provision_instance.yml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ---
  2. - name: set openshift_node_bootstrap to True when building AMI
  3. set_fact:
  4. openshift_node_bootstrap: True
  5. - include_tasks: vpc_and_subnet_id.yml
  6. - name: create instance for ami creation
  7. ec2:
  8. assign_public_ip: yes
  9. region: "{{ openshift_aws_region }}"
  10. key_name: "{{ openshift_aws_ssh_key_name }}"
  11. group: "{{ openshift_aws_build_ami_group }}"
  12. instance_type: m4.xlarge
  13. vpc_subnet_id: "{{ openshift_aws_subnet_id | default(subnetout.subnets[0].id) }}"
  14. image: "{{ openshift_aws_base_ami }}"
  15. volumes:
  16. - device_name: /dev/sdb
  17. volume_type: gp2
  18. volume_size: 100
  19. delete_on_termination: true
  20. wait: yes
  21. exact_count: 1
  22. count_tag:
  23. Name: "{{ openshift_aws_base_ami_name }}"
  24. instance_tags:
  25. Name: "{{ openshift_aws_base_ami_name }}"
  26. - name: fetch newly created instances
  27. ec2_remote_facts:
  28. region: "{{ openshift_aws_region }}"
  29. filters:
  30. "tag:Name": "{{ openshift_aws_base_ami_name }}"
  31. instance-state-name: running
  32. register: instancesout
  33. retries: 20
  34. delay: 3
  35. until: instancesout.instances|length > 0
  36. - name: wait for ssh to become available
  37. wait_for:
  38. port: 22
  39. host: "{{ instancesout.instances[0].public_ip_address }}"
  40. timeout: 300
  41. search_regex: OpenSSH
  42. - name: add host to nodes
  43. add_host:
  44. groups: nodes
  45. name: "{{ instancesout.instances[0].public_dns_name }}"