diff options
author | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2021-01-29 14:19:40 +0100 |
---|---|---|
committer | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2021-01-29 14:19:43 +0100 |
commit | a4e91199e71aafff55120ebb9ebef1826d741db8 (patch) | |
tree | 30f47203553e4c8f8d37a76d8cafad03a6a1e636 /deployment/noheat/infra-openstack/ansible/roles/openstack | |
parent | eac6b77fc46b0204a7f88ddd75e6f5df30356006 (diff) |
Create cluster operator access information
Issue-ID: INT-1601
Change-Id: I218ec5521d97eab298ea0556f690f2bc3d8ccbfa
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
Diffstat (limited to 'deployment/noheat/infra-openstack/ansible/roles/openstack')
-rw-r--r-- | deployment/noheat/infra-openstack/ansible/roles/openstack/create_devstack_hosts/tasks/create_host.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/deployment/noheat/infra-openstack/ansible/roles/openstack/create_devstack_hosts/tasks/create_host.yml b/deployment/noheat/infra-openstack/ansible/roles/openstack/create_devstack_hosts/tasks/create_host.yml index c3b40d29d..c217abaa9 100644 --- a/deployment/noheat/infra-openstack/ansible/roles/openstack/create_devstack_hosts/tasks/create_host.yml +++ b/deployment/noheat/infra-openstack/ansible/roles/openstack/create_devstack_hosts/tasks/create_host.yml @@ -27,3 +27,7 @@ ansible_ssh_user: "{{ image.user }}" ansible_ssh_extra_args: "-o StrictHostKeyChecking=no" ansible_ssh_private_key_file: "~/.ssh/{{ keypair.key.name }}" + +- name: Add host to hosts dict + set_fact: + hosts_dict: "{{ hosts_dict|default({}) | combine( {new_host.server.name: new_host.server.private_v4} ) }}" |