diff options
author | Markos Chandras <mchandras@suse.de> | 2018-03-16 11:05:56 +0000 |
---|---|---|
committer | Markos Chandras <mchandras@suse.de> | 2018-03-16 22:52:35 +0000 |
commit | cf894cbcffe0e1b2b28f6743e41407522cf20a63 (patch) | |
tree | 7f01785f8ea5098383b87fbc19c71bda0cb770f6 /xci/installer/osa/playbooks | |
parent | 5dcc328f7506166e049c0310d5d8f70fa4579d45 (diff) |
xci: Copy XCI environment to deployment hosts
The XCI hosts may need some of the XCI env variables to perform
certain tasks so dump the XCI environment to /root/xci.env file and
make that available to every host on the deployment.
Change-Id: I286a01ca7da8ff206438c261798167f5e4daf7f2
Signed-off-by: Markos Chandras <mchandras@suse.de>
Diffstat (limited to 'xci/installer/osa/playbooks')
-rw-r--r-- | xci/installer/osa/playbooks/configure-opnfvhost.yml | 4 | ||||
-rw-r--r-- | xci/installer/osa/playbooks/configure-targethosts.yml | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/xci/installer/osa/playbooks/configure-opnfvhost.yml b/xci/installer/osa/playbooks/configure-opnfvhost.yml index 8b596b3c..8255995a 100644 --- a/xci/installer/osa/playbooks/configure-opnfvhost.yml +++ b/xci/installer/osa/playbooks/configure-opnfvhost.yml @@ -136,6 +136,10 @@ content: "{{ xci_ssl_key }}" dest: "/etc/ssl/private/xci.key" become: true + - name: fetch xci environment + copy: + src: "{{ XCI_PATH }}/.cache/xci.env" + dest: /root/xci.env - hosts: localhost remote_user: root diff --git a/xci/installer/osa/playbooks/configure-targethosts.yml b/xci/installer/osa/playbooks/configure-targethosts.yml index 4341a884..ad8bafc9 100644 --- a/xci/installer/osa/playbooks/configure-targethosts.yml +++ b/xci/installer/osa/playbooks/configure-targethosts.yml @@ -7,6 +7,11 @@ src: "{{ XCI_PATH }}/xci/files/authorized_keys" dest: /root/.ssh/authorized_keys + - name: fetch xci environment + copy: + src: "{{ XCI_PATH }}/.cache/xci.env" + dest: /root/xci.env + - hosts: controller remote_user: root vars_files: |