wait_for_groups.yml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. # The idea here is to wait until all scale groups are at
  3. # their desired capacity before continuing.
  4. # This is accomplished with a custom filter_plugin and until clause
  5. - name: "fetch the scale groups"
  6. ec2_asg_facts:
  7. region: "{{ openshift_aws_region }}"
  8. tags:
  9. "{{ {'kubernetes.io/cluster/' ~ openshift_aws_clusterid: openshift_aws_clusterid } }}"
  10. register: qasg
  11. # scale_groups_match_capacity is a custom filter in role lib_utils
  12. until: qasg | json_query('results[*]') | scale_groups_match_capacity | bool
  13. delay: 10
  14. retries: 60
  15. - debug: var=openshift_aws_created_asgs
  16. # how do we gaurantee the instances are up?
  17. - name: fetch newly created instances
  18. ec2_instance_facts:
  19. region: "{{ openshift_aws_region }}"
  20. filters:
  21. "{{ {'tag:kubernetes.io/cluster/' ~ openshift_aws_clusterid: openshift_aws_clusterid,
  22. 'tag:aws:autoscaling:groupName': item,
  23. 'instance-state-name': 'running'} }}"
  24. with_items: "{{ openshift_aws_created_asgs if openshift_aws_created_asgs != [] else qasg | sum(attribute='results', start=[]) }}"
  25. register: instancesout
  26. until: instancesout.instances|length > 0
  27. delay: 5
  28. retries: 60
  29. - name: dump instances
  30. debug:
  31. msg: "{{ instancesout.results | sum(attribute='instances', start=[]) }}"
  32. - name: wait for ssh to become available
  33. wait_for:
  34. port: 22
  35. host: "{{ item.public_ip_address }}"
  36. timeout: 300
  37. search_regex: OpenSSH
  38. with_items: "{{ instancesout.results | sum(attribute='instances', start=[]) }}"