wait_for_groups.yml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. until: qasg | json_query('results[*]') | scale_groups_match_capacity | bool
  12. delay: 10
  13. retries: 60
  14. - debug: var=openshift_aws_created_asgs
  15. # how do we gaurantee the instances are up?
  16. - name: fetch newly created instances
  17. ec2_instance_facts:
  18. region: "{{ openshift_aws_region }}"
  19. filters:
  20. "{{ {'tag:kubernetes.io/cluster/' ~ openshift_aws_clusterid: openshift_aws_clusterid,
  21. 'tag:aws:autoscaling:groupName': item,
  22. 'instance-state-name': 'running'} }}"
  23. with_items: "{{ openshift_aws_created_asgs if openshift_aws_created_asgs != [] else qasg | sum(attribute='results', start=[]) }}"
  24. register: instancesout
  25. until: instancesout.instances|length > 0
  26. delay: 5
  27. retries: 60
  28. - name: dump instances
  29. debug:
  30. msg: "{{ instancesout.results | sum(attribute='instances', start=[]) }}"
  31. - name: wait for ssh to become available
  32. wait_for:
  33. port: 22
  34. host: "{{ item.public_ip_address }}"
  35. timeout: 300
  36. search_regex: OpenSSH
  37. with_items: "{{ instancesout.results | sum(attribute='instances', start=[]) }}"