provision.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ---
  2. - when: openshift_aws_create_iam_cert | bool
  3. name: create the iam_cert for elb certificate
  4. include_tasks: iam_cert.yml
  5. - when: openshift_aws_create_s3 | bool
  6. name: create s3 bucket for registry
  7. include_tasks: s3.yml
  8. - include_tasks: vpc_and_subnet_id.yml
  9. - name: create elbs
  10. include_tasks: elb.yml
  11. with_dict: "{{ openshift_aws_elb_dict }}"
  12. vars:
  13. l_elb_security_groups: "{{ openshift_aws_elb_security_groups }}"
  14. l_openshift_aws_elb_name_dict: "{{ openshift_aws_elb_name_dict }}"
  15. loop_control:
  16. loop_var: l_elb_dict_item
  17. - name: include scale group creation for master
  18. include_tasks: build_node_group.yml
  19. with_items: "{{ openshift_aws_master_group }}"
  20. vars:
  21. l_node_group_config: "{{ openshift_aws_master_group_config }}"
  22. loop_control:
  23. loop_var: openshift_aws_node_group
  24. - name: fetch newly created instances
  25. ec2_instance_facts:
  26. region: "{{ openshift_aws_region }}"
  27. filters:
  28. "tag:clusterid": "{{ openshift_aws_clusterid }}"
  29. "tag:host-type": "master"
  30. instance-state-name: running
  31. register: instancesout
  32. retries: 20
  33. delay: 3
  34. until: instancesout.instances|length > 0
  35. - name: wait for ssh to become available
  36. wait_for:
  37. port: 22
  38. host: "{{ item.public_ip_address }}"
  39. timeout: 300
  40. search_regex: OpenSSH
  41. with_items: "{{ instancesout.instances }}"
  42. when: openshift_aws_wait_for_ssh | bool