launch.yml 1.6 KB

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