provision_instance.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. - include_tasks: vpc_and_subnet_id.yml
  3. - name: create instance for ami creation
  4. ec2:
  5. assign_public_ip: yes
  6. region: "{{ openshift_aws_region }}"
  7. key_name: "{{ openshift_aws_ssh_key_name }}"
  8. group: "{{ openshift_aws_build_ami_group }}"
  9. instance_type: m4.xlarge
  10. vpc_subnet_id: "{{ openshift_aws_subnet_id | default(subnetout.subnets[0].id) }}"
  11. image: "{{ openshift_aws_base_ami }}"
  12. volumes: "{{ openshift_aws_node_group_config_node_volumes }}"
  13. wait: yes
  14. exact_count: 1
  15. count_tag:
  16. Name: "{{ openshift_aws_base_ami_name }}"
  17. instance_tags:
  18. Name: "{{ openshift_aws_base_ami_name }}"
  19. - name: fetch newly created instances
  20. ec2_instance_facts:
  21. region: "{{ openshift_aws_region }}"
  22. filters:
  23. "tag:Name": "{{ openshift_aws_base_ami_name }}"
  24. instance-state-name: running
  25. register: instancesout
  26. retries: 20
  27. delay: 3
  28. until: instancesout.instances|length > 0
  29. - name: wait for ssh to become available
  30. wait_for:
  31. port: 22
  32. host: "{{ instancesout.instances[0].public_ip_address }}"
  33. timeout: 300
  34. search_regex: OpenSSH
  35. - name: add host to nodes
  36. add_host:
  37. groups: nodes,g_new_node_hosts
  38. name: "{{ instancesout.instances[0].public_dns_name }}"