provision.yml 877 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. - include_tasks: vpc_and_subnet_id.yml
  3. - name: include scale group creation for master
  4. include_tasks: build_node_group.yml
  5. with_items: "{{ openshift_aws_master_group }}"
  6. vars:
  7. l_node_group_config: "{{ openshift_aws_master_group_config }}"
  8. loop_control:
  9. loop_var: openshift_aws_node_group
  10. - name: fetch newly created instances
  11. ec2_instance_facts:
  12. region: "{{ openshift_aws_region }}"
  13. filters:
  14. "tag:clusterid": "{{ openshift_aws_clusterid }}"
  15. "tag:host-type": "master"
  16. instance-state-name: running
  17. register: instancesout
  18. retries: 20
  19. delay: 3
  20. until: instancesout.instances|length > 0
  21. - name: wait for ssh to become available
  22. wait_for:
  23. port: 22
  24. host: "{{ item.public_ip_address }}"
  25. timeout: 300
  26. search_regex: OpenSSH
  27. with_items: "{{ instancesout.instances }}"
  28. when: openshift_aws_wait_for_ssh | bool