provision.yml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. vars:
  20. l_nodes_to_build: "{{ openshift_aws_master_group_config }}"
  21. l_launch_config_security_groups: "{{ openshift_aws_launch_config_security_groups }}"
  22. l_aws_ami_map: "{{ openshift_aws_ami_map }}"
  23. - name: fetch newly created instances
  24. ec2_remote_facts:
  25. region: "{{ openshift_aws_region }}"
  26. filters:
  27. "tag:clusterid": "{{ openshift_aws_clusterid }}"
  28. "tag:host-type": "master"
  29. instance-state-name: running
  30. register: instancesout
  31. retries: 20
  32. delay: 3
  33. until: instancesout.instances|length > 0
  34. - name: wait for ssh to become available
  35. wait_for:
  36. port: 22
  37. host: "{{ item.public_ip_address }}"
  38. timeout: 300
  39. search_regex: OpenSSH
  40. with_items: "{{ instancesout.instances }}"
  41. when: openshift_aws_wait_for_ssh | bool