diff options
Diffstat (limited to 'deployment/noheat/infra-openstack/ansible/create.yml')
-rw-r--r-- | deployment/noheat/infra-openstack/ansible/create.yml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/deployment/noheat/infra-openstack/ansible/create.yml b/deployment/noheat/infra-openstack/ansible/create.yml index 69ecd1dd9..a088662b2 100644 --- a/deployment/noheat/infra-openstack/ansible/create.yml +++ b/deployment/noheat/infra-openstack/ansible/create.yml @@ -30,7 +30,9 @@ operator_key: "{{ hostvars['operator0']['key']['public_key'] }}" - name: Create cluster operator access information hosts: "operator0" - gather_facts: False + roles: + - role: geerlingguy.ansible + become: yes tasks: - name: Add cluster hostnames to /etc/hosts file lineinfile: @@ -38,3 +40,9 @@ line: "{{ item.value + ' ' + item.key }}" become: yes loop: "{{ lookup('dict', hostvars['localhost']['hosts_dict']) }}" + - name: Create inventory for in-cluster deployment stage + template: + src: templates/inventory.ini.j2 + dest: "{{ operation.inventory }}" + vars: + hosts: "{{ lookup('dict', hostvars['localhost']['hosts_dict']) }}" |