diff options
author | 2018-05-18 07:36:11 +0000 | |
---|---|---|
committer | 2018-05-18 07:36:11 +0000 | |
commit | 8de89f399e18ea3b29f5f19b7319a11d45fedbe0 (patch) | |
tree | 349dbbe42c41f4c98c153cbd2e7f426e4b5e7062 /xci/installer/kubespray/playbooks | |
parent | ca7b338b93affc2d1f08b6f47e7654f91653b47f (diff) | |
parent | 0ed80c59846e9e1b23d26869f05f109dac7495c5 (diff) |
Merge "xci: kubespray: Switch kubespray to dynamic inventory"
Diffstat (limited to 'xci/installer/kubespray/playbooks')
-rw-r--r-- | xci/installer/kubespray/playbooks/configure-opnfvhost.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/xci/installer/kubespray/playbooks/configure-opnfvhost.yml b/xci/installer/kubespray/playbooks/configure-opnfvhost.yml index 0b38060b..c6b29dc0 100644 --- a/xci/installer/kubespray/playbooks/configure-opnfvhost.yml +++ b/xci/installer/kubespray/playbooks/configure-opnfvhost.yml @@ -34,16 +34,18 @@ file: path: "{{ remote_xci_path }}/.cache/repos/kubespray/opnfv_inventory" state: absent - - name: copy kubespray inventory directory - command: "cp -rf {{ remote_xci_flavor_files }}/inventory \ - {{ remote_xci_path }}/.cache/repos/kubespray/opnfv_inventory" - args: - creates: "{{ remote_xci_path }}/.cache/repos/kubespray/opnfv_inventory" + - name: make sure kubespray/opnfv_inventory/group_vars/ exist file: path: "{{ remote_xci_path }}/.cache/repos/kubespray/opnfv_inventory/group_vars" state: directory + - name: copy kubespray inventory directory + file: + src: "{{ remote_xci_playbooks }}/dynamic_inventory.py" + path: "{{ remote_xci_path }}/.cache/repos/kubespray/opnfv_inventory/dynamic_inventory.py" + state: link + - name: Reload XCI deployment host facts setup: filter: ansible_local |