launch_instances.yml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ---
  2. - name: Launch instance(s)
  3. gce:
  4. instance_names: "{{ instances }}"
  5. machine_type: "{{ gce_machine_type | default(deployment_vars[deployment_type].machine_type, true) }}"
  6. image: "{{ gce_machine_image | default(deployment_vars[deployment_type].image, true) }}"
  7. service_account_email: "{{ lookup('env', 'gce_service_account_email_address') }}"
  8. pem_file: "{{ lookup('env', 'gce_service_account_pem_file_path') }}"
  9. project_id: "{{ lookup('env', 'gce_project_id') }}"
  10. zone: "{{ lookup('env', 'zone') }}"
  11. network: "{{ lookup('env', 'network') }}"
  12. # unsupported in 1.9.+
  13. #service_account_permissions: "datastore,logging-write"
  14. tags:
  15. - created-by-{{ lookup('env', 'LOGNAME') |default(cluster, true) }}
  16. - environment-{{ cluster_env }}
  17. - clusterid-{{ cluster_id }}
  18. - host-type-{{ type }}
  19. - sub-host-type-{{ g_sub_host_type }}
  20. when: instances |length > 0
  21. register: gce
  22. - set_fact:
  23. node_label:
  24. # There doesn't seem to be a way to get the region directly, so parse it out of the zone.
  25. region: "{{ gce.zone | regex_replace('^(.*)-.*$', '\\\\1') }}"
  26. type: "{{ g_sub_host_type }}"
  27. when: instances |length > 0 and type == "node"
  28. - set_fact:
  29. node_label:
  30. # There doesn't seem to be a way to get the region directly, so parse it out of the zone.
  31. region: "{{ gce.zone | regex_replace('^(.*)-.*$', '\\\\1') }}"
  32. type: "{{ type }}"
  33. when: instances |length > 0 and type != "node"
  34. - name: Add new instances to groups and set variables needed
  35. add_host:
  36. hostname: "{{ item.name }}"
  37. ansible_ssh_host: "{{ item.public_ip }}"
  38. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  39. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  40. groups: "{{ item.tags | oo_prepend_strings_in_list('tag_') | join(',') }}"
  41. gce_public_ip: "{{ item.public_ip }}"
  42. gce_private_ip: "{{ item.private_ip }}"
  43. openshift_node_labels: "{{ node_label }}"
  44. with_items: gce.instance_data | default([], true)
  45. - name: Wait for ssh
  46. wait_for: port=22 host={{ item.public_ip }}
  47. with_items: gce.instance_data | default([], true)
  48. - name: Wait for user setup
  49. command: "ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null {{ hostvars[item.name].ansible_ssh_user }}@{{ item.public_ip }} echo {{ hostvars[item.name].ansible_ssh_user }} user is setup"
  50. register: result
  51. until: result.rc == 0
  52. retries: 30
  53. delay: 5
  54. with_items: gce.instance_data | default([], true)