launch_instances.yml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ---
  2. # TODO: when we are ready to go to ansible 1.9+ support only, we can update to
  3. # the gce task to use the disk_auto_delete parameter to avoid having to delete
  4. # the disk as a separate step on termination
  5. - name: Launch instance(s)
  6. gce:
  7. instance_names: "{{ instances }}"
  8. machine_type: "{{ gce_machine_type | default(deployment_vars[deployment_type].machine_type, true) }}"
  9. image: "{{ gce_machine_image | default(deployment_vars[deployment_type].image, true) }}"
  10. service_account_email: "{{ lookup('env', 'gce_service_account_email_address') }}"
  11. pem_file: "{{ lookup('env', 'gce_service_account_pem_file_path') }}"
  12. project_id: "{{ lookup('env', 'gce_project_id') }}"
  13. zone: "{{ lookup('env', 'zone') }}"
  14. network: "{{ lookup('env', 'network') }}"
  15. # unsupported in 1.9.+
  16. #service_account_permissions: "datastore,logging-write"
  17. tags:
  18. - created-by-{{ lookup('env', 'LOGNAME') |default(cluster, true) }}
  19. - environment-{{ cluster_env }}
  20. - clusterid-{{ cluster_id }}
  21. - host-type-{{ type }}
  22. - sub-host-type-{{ g_sub_host_type }}
  23. when: instances |length > 0
  24. register: gce
  25. - set_fact:
  26. node_label:
  27. # There doesn't seem to be a way to get the region directly, so parse it out of the zone.
  28. region: "{{ gce.zone | regex_replace('^(.*)-.*$', '\\\\1') }}"
  29. type: "{{ g_sub_host_type }}"
  30. when: instances |length > 0 and type == "node"
  31. - set_fact:
  32. node_label:
  33. # There doesn't seem to be a way to get the region directly, so parse it out of the zone.
  34. region: "{{ gce.zone | regex_replace('^(.*)-.*$', '\\\\1') }}"
  35. type: "{{ type }}"
  36. when: instances |length > 0 and type != "node"
  37. - name: Add new instances to groups and set variables needed
  38. add_host:
  39. hostname: "{{ item.name }}"
  40. ansible_ssh_host: "{{ item.public_ip }}"
  41. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user | default(ansible_ssh_user, true) }}"
  42. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  43. groups: "{{ item.tags | oo_prepend_strings_in_list('tag_') | join(',') }}"
  44. gce_public_ip: "{{ item.public_ip }}"
  45. gce_private_ip: "{{ item.private_ip }}"
  46. openshift_node_labels: "{{ node_label }}"
  47. with_items: gce.instance_data | default([], true)
  48. - name: Wait for ssh
  49. wait_for: port=22 host={{ item.public_ip }}
  50. with_items: gce.instance_data | default([], true)
  51. - name: Wait for user setup
  52. 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"
  53. register: result
  54. until: result.rc == 0
  55. retries: 30
  56. delay: 5
  57. with_items: gce.instance_data | default([], true)