configure_openstack.yml 1.5 KB

123456789101112131415161718192021222324252627
  1. ---
  2. - name: Check infra
  3. command: 'heat stack-show {{ openstack_network_prefix }}-stack'
  4. register: stack_show_result
  5. changed_when: false
  6. failed_when: stack_show_result.rc != 0 and 'Stack not found' not in stack_show_result.stderr
  7. - name: Create infra
  8. command: 'heat stack-create -f {{ openstack_infra_heat_stack }} -P cluster-id={{ cluster_id }} -P network-prefix={{ openstack_network_prefix }} -P dns-nameservers={{ openstack_network_dns | join(",") }} -P cidr={{ openstack_network_cidr }} -P ssh-incoming={{ openstack_ssh_access_from }} {{ openstack_network_prefix }}-stack'
  9. when: stack_show_result.rc == 1
  10. - name: Update infra
  11. command: 'heat stack-update -f {{ openstack_infra_heat_stack }} -P cluster-id={{ cluster_id }} -P network-prefix={{ openstack_network_prefix }} -P dns-nameservers={{ openstack_network_dns | join(",") }} -P cidr={{ openstack_network_cidr }} -P ssh-incoming={{ openstack_ssh_access_from }} {{ openstack_network_prefix }}-stack'
  12. when: stack_show_result.rc == 0
  13. - name: Wait for infra readiness
  14. shell: 'heat stack-show {{ openstack_network_prefix }}-stack | awk ''$2 == "stack_status" {print $4}'''
  15. register: stack_show_status_result
  16. until: stack_show_status_result.stdout not in ['CREATE_IN_PROGRESS', 'UPDATE_IN_PROGRESS']
  17. retries: 30
  18. delay: 1
  19. failed_when: stack_show_status_result.stdout not in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
  20. - name: Create ssh keypair
  21. nova_keypair:
  22. name: "{{ openstack_ssh_keypair }}"
  23. public_key: "{{ openstack_ssh_public_key }}"