launch_instances.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ---
  2. - name: Get net id
  3. shell: 'neutron net-show {{ openstack_network_prefix }}-net | awk "/\\<id\\>/ {print \$4}"'
  4. register: net_id_result
  5. - name: Launch instance(s)
  6. nova_compute:
  7. name: '{{ item }}'
  8. image_name: '{{ deployment_vars[deployment_type].image.name | default(omit, true) }}'
  9. image_id: '{{ deployment_vars[deployment_type].image.id | default(omit, true) }}'
  10. flavor_ram: '{{ openstack_flavor[k8s_type].ram | default(omit, true) }}'
  11. flavor_id: '{{ openstack_flavor[k8s_type].id | default(omit, true) }}'
  12. flavor_include: '{{ openstack_flavor[k8s_type].include | default(omit, true) }}'
  13. key_name: '{{ openstack_ssh_keypair }}'
  14. security_groups: '{{ openstack_network_prefix }}-{{ k8s_type }}-secgrp'
  15. nics:
  16. - net-id: '{{ net_id_result.stdout }}'
  17. user_data: "{{ lookup('file','files/user-data') }}"
  18. meta:
  19. env: '{{ cluster }}'
  20. host-type: '{{ type }}'
  21. env-host-type: '{{ cluster }}-openshift-{{ type }}'
  22. floating_ip_pools: '{{ openstack_floating_ip_pools }}'
  23. with_items: instances
  24. register: nova_compute_result
  25. - name: Add new instances groups and variables
  26. add_host:
  27. hostname: '{{ item.item }}'
  28. ansible_ssh_host: '{{ item.public_ip }}'
  29. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  30. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  31. groups: 'tag_env_{{ cluster }}, tag_host-type_{{ type }}, tag_env-host-type_{{ cluster }}-openshift-{{ type }}'
  32. with_items: nova_compute_result.results
  33. - name: Wait for ssh
  34. wait_for:
  35. host: '{{ item.public_ip }}'
  36. port: 22
  37. with_items: nova_compute_result.results
  38. - name: Wait for user setup
  39. command: 'ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null {{ hostvars[item.item].ansible_ssh_user }}@{{ item.public_ip }} echo {{ hostvars[item.item].ansible_ssh_user }} user is setup'
  40. register: result
  41. until: result.rc == 0
  42. retries: 30
  43. delay: 1
  44. with_items: nova_compute_result.results