provision_instance.yml 1.7 KB

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