From e99fb1e677516c2951542d1eee62166246244ca8 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Mon, 16 Apr 2018 10:33:47 +0100 Subject: xci: kubespray: Fix inventory when configuring keys on targethosts The SSH keys for the OPNFV host have been configured in the configure-opnfvhost.yml playbook so we shouldn't do that in a playbook that is only meant to configure the target hosts. As such, fix the group to use 'k8s-cluster' instead. Since the targethosts playbook does not apply to all hosts anymore, we can simply drop the list of required packages and only install 'netaddr' on the OPNFV host which is the host that needs it. Similarly, the dbus package is only needed on the targethosts. Change-Id: I293ad83a3a95797d9025f2cddd7849be7b3a49da Signed-off-by: Markos Chandras --- xci/installer/kubespray/playbooks/configure-targethosts.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'xci/installer/kubespray/playbooks/configure-targethosts.yml') diff --git a/xci/installer/kubespray/playbooks/configure-targethosts.yml b/xci/installer/kubespray/playbooks/configure-targethosts.yml index dd7024fb..c744eae6 100644 --- a/xci/installer/kubespray/playbooks/configure-targethosts.yml +++ b/xci/installer/kubespray/playbooks/configure-targethosts.yml @@ -1,12 +1,13 @@ --- -- hosts: all +- hosts: k8s-cluster remote_user: root tasks: - name: Manage SSH keys include_tasks: "{{ xci_path }}/xci/playbooks/manage-ssh-keys.yml" - - name: Install required packages + + - name: Install dbus package: - name: "{{ kube_require_packages[ansible_pkg_mgr] }}" + name: "{{ (ansible_pkg_mgr == 'zypper') | ternary('dbus-1', 'dbus') }}" state: present update_cache: "{{ (ansible_pkg_mgr == 'apt') | ternary('yes', omit) }}" -- cgit 1.2.3-korg