diff options
author | wutianwei <wutianwei1@huawei.com> | 2018-02-03 16:53:28 +0800 |
---|---|---|
committer | wutianwei <wutianwei1@huawei.com> | 2018-02-23 02:09:48 +0000 |
commit | 24c9f93e9434efbbee9bf9a7a399a527ac2dcb7c (patch) | |
tree | 72021f888dcadca959d5a90d78eb76faf2a76652 /xci/installer/kubespray/playbooks/group_vars/all | |
parent | e92f64a24a04b08387af618a9bc398d0315bb7ce (diff) |
XCI: k8s: Add support for CentOS distro
Kubespray already supports the CentOS distribution so make the
necessary changes to allow it to work in XCI.
Change-Id: I3cf1db055a5fd563b107b46456bc3e18eeafb3ab
Co-authored-by: Markos Chandras <mchandras@suse.de>
Signed-off-by: wutianwei <wutianwei1@huawei.com>
Diffstat (limited to 'xci/installer/kubespray/playbooks/group_vars/all')
-rw-r--r-- | xci/installer/kubespray/playbooks/group_vars/all | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/xci/installer/kubespray/playbooks/group_vars/all b/xci/installer/kubespray/playbooks/group_vars/all index d2c36bfc..87ed63bd 100644 --- a/xci/installer/kubespray/playbooks/group_vars/all +++ b/xci/installer/kubespray/playbooks/group_vars/all @@ -1,6 +1,13 @@ kube_require_packages: - - "python-netaddr" - - "dbus" + apt: + - python-netaddr + - dbus + yum: + - python-netaddr + - dbus + zypper: + - python-netaddr + - dbus-1 keepalived_ubuntu_src: "uca" keepalived_uca_apt_repo_url: "{{ uca_apt_repo_url | default('http://ubuntu-cloud.archive.canonical.com/ubuntu') }}" |