Skip to content
Snippets Groups Projects
Commit 682ed1c9 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Temporaly fix deploy gate"

parents 6139a3ca de4747af
No related branches found
No related tags found
No related merge requests found
--- ---
- name: Waiting for nova-compute service up #- name: Waiting for nova-compute service up
# command: >
# docker exec kolla_toolbox openstack
# --os-interface internal
# --os-auth-url {{ keystone_admin_url }}
# --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
# NOTE (egonzalez) Remove after service-list is fixed
- name: TMP Waiting for nova-compute service up
command: > command: >
docker exec kolla_toolbox openstack docker exec kolla_toolbox mysql
--os-interface internal -unova -p{{ nova_database_password }}
--os-auth-url {{ keystone_admin_url }} -h {{ database_address }} nova
--os-identity-api-version 3 -e "SELECT topic from services WHERE topic = 'compute'";
--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 register: nova_compute_services
changed_when: false changed_when: false
run_once: True run_once: True
...@@ -19,7 +36,7 @@ ...@@ -19,7 +36,7 @@
delay: 10 delay: 10
until: until:
- nova_compute_services | success - nova_compute_services | success
- nova_compute_services.stdout | from_json | length != 0 - nova_compute_services.stdout | length != 0
- name: Running nova simple cell setup - name: Running nova simple cell setup
command: docker exec nova_api nova-manage cell_v2 simple_cell_setup command: docker exec nova_api nova-manage cell_v2 simple_cell_setup
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment