68d3d8ba29
Change-Id: I64dd52d909a884b2b9aea6f016d789d99caa3f17 Closes-Bug: #1652580
31 lines
1003 B
YAML
31 lines
1003 B
YAML
---
|
|
- name: Waiting for nova-compute service up
|
|
command: >
|
|
docker exec kolla_toolbox openstack
|
|
--os-auth-url {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}/v3
|
|
--os-identity-api-version 3
|
|
--os-project-domain-name default
|
|
--os-tenant-name admin
|
|
--os-username admin
|
|
--os-password {{ keystone_admin_password }}
|
|
--os-user-domain-name default
|
|
compute service list -f json --service nova-compute
|
|
register: nova_compute_services
|
|
changed_when: false
|
|
run_once: True
|
|
delegate_to: "{{ groups['nova-api'][0] }}"
|
|
retries: 20
|
|
delay: 10
|
|
until:
|
|
- nova_compute_services | success
|
|
- nova_compute_services.stdout | from_json | length != 0
|
|
|
|
- name: Running nova simple cell setup
|
|
command: docker exec nova_api nova-manage cell_v2 simple_cell_setup
|
|
register: cell_setup
|
|
changed_when:
|
|
- cell_setup | success
|
|
- '"Cell0 is already setup" not in cell_setup.stdout'
|
|
run_once: True
|
|
delegate_to: "{{ groups['nova-api'][0] }}"
|