wait_for_groups.yml 949 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. # The idea here is to wait until all scale groups are at
  3. # their desired capacity before continuing.
  4. - name: fetch the scale groups
  5. ec2_asg_facts:
  6. region: "{{ openshift_aws_region }}"
  7. tags:
  8. "{{ {'kubernetes.io/cluster/' ~ openshift_aws_clusterid: openshift_aws_clusterid} }}"
  9. register: qasg
  10. until: qasg.results | scale_groups_match_capacity | bool
  11. delay: 10
  12. retries: 60
  13. - name: fetch newly created instances
  14. ec2_remote_facts:
  15. region: "{{ openshift_aws_region }}"
  16. filters:
  17. "{{ {'tag:kubernetes.io/cluster/' ~ openshift_aws_clusterid: openshift_aws_clusterid,
  18. 'tag:version': openshift_aws_new_version} }}"
  19. register: instancesout
  20. until: instancesout.instances|length > 0
  21. delay: 5
  22. retries: 60
  23. - name: wait for ssh to become available
  24. wait_for:
  25. port: 22
  26. host: "{{ item.public_ip_address }}"
  27. timeout: 300
  28. search_regex: OpenSSH
  29. with_items: "{{ instancesout.instances }}"