setup_scale_group_facts.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ---
  2. - name: fetch all created instances
  3. ec2_instance_facts:
  4. region: "{{ openshift_aws_region }}"
  5. filters:
  6. "{{ {'tag:kubernetes.io/cluster/' ~ openshift_aws_clusterid: openshift_aws_clusterid,
  7. 'instance-state-name': 'running'} }}"
  8. register: qinstances
  9. # The building of new and current groups is dependent of having a list of the current asgs and the created ones
  10. # that can be found in the variables: openshift_aws_created_asgs, openshift_aws_current_asgs. If these do not exist, we cannot determine which hosts are
  11. # new and which hosts are current.
  12. - name: Build new node group
  13. add_host:
  14. groups: oo_sg_new_nodes
  15. ansible_ssh_host: "{{ item.public_dns_name }}"
  16. name: "{{ item.public_dns_name }}"
  17. hostname: "{{ item.public_dns_name }}"
  18. when:
  19. - openshift_aws_created_asgs != []
  20. - "'aws:autoscaling:groupName' in item.tags"
  21. - item.tags['aws:autoscaling:groupName'] in openshift_aws_created_asgs
  22. - "'node' in item.tags['host-type']"
  23. with_items: "{{ qinstances.instances }}"
  24. - name: dump openshift_aws_current_asgs
  25. debug:
  26. msg: "{{ openshift_aws_current_asgs }}"
  27. - name: Build current node group
  28. add_host:
  29. groups: oo_sg_current_nodes
  30. ansible_ssh_host: "{{ item.public_dns_name }}"
  31. name: "{{ item.public_dns_name }}"
  32. hostname: "{{ item.public_dns_name }}"
  33. when:
  34. - openshift_aws_current_asgs != []
  35. - "'aws:autoscaling:groupName' in item.tags"
  36. - item.tags['aws:autoscaling:groupName'] in openshift_aws_current_asgs
  37. - "'node' in item.tags['host-type']"
  38. with_items: "{{ qinstances.instances }}"
  39. - name: place all nodes into nodes group
  40. add_host:
  41. groups: nodes
  42. ansible_ssh_host: "{{ item.public_dns_name }}"
  43. name: "{{ item.public_dns_name }}"
  44. hostname: "{{ item.public_dns_name }}"
  45. with_items: "{{ qinstances.instances }}"