launch.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. hosts: localhost
  7. connection: local
  8. gather_facts: no
  9. # TODO: modify image based on deployment_type
  10. vars:
  11. inst_names: "{{ oo_new_inst_names }}"
  12. machine_type: n1-standard-1
  13. image: libra-rhel7
  14. tasks:
  15. - name: Launch instances
  16. gce:
  17. instance_names: "{{ inst_names }}"
  18. machine_type: "{{ machine_type }}"
  19. image: "{{ image }}"
  20. service_account_email: "{{ gce_service_account_email }}"
  21. pem_file: "{{ gce_pem_file }}"
  22. project_id: "{{ gce_project_id }}"
  23. tags: "{{ oo_new_inst_tags }}"
  24. register: gce
  25. - name: Add new instances public IPs to oo_nodes_to_config
  26. add_host:
  27. hostname: "{{ item.name }}"
  28. ansible_ssh_host: "{{ item.public_ip }}"
  29. groupname: oo_nodes_to_config
  30. gce_private_ip: "{{ item.private_ip }}"
  31. with_items: gce.instance_data
  32. - name: Wait for ssh
  33. wait_for: port=22 host={{ item.public_ip }}
  34. with_items: gce.instance_data
  35. - name: Wait for root user setup
  36. command: "ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null root@{{ item.public_ip }} echo root user is setup"
  37. register: result
  38. until: result.rc == 0
  39. retries: 20
  40. delay: 10
  41. with_items: gce.instance_data
  42. # Apply the configs, separate so that just the configs can be run by themselves
  43. - include: config.yml