setup_scale_group_facts.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. - name: group scale group nodes
  3. ec2_remote_facts:
  4. region: "{{ openshift_aws_region }}"
  5. filters:
  6. "{{ {'tag:kubernetes.io/cluster/' ~ openshift_aws_clusterid: openshift_aws_clusterid }}}"
  7. register: qinstances
  8. - name: Build new node group
  9. add_host:
  10. groups: oo_sg_new_nodes
  11. ansible_ssh_host: "{{ item.public_dns_name }}"
  12. name: "{{ item.public_dns_name }}"
  13. hostname: "{{ item.public_dns_name }}"
  14. when:
  15. - (item.tags.version | default(False)) == openshift_aws_new_version
  16. - "'node' in item.tags['host-type']"
  17. with_items: "{{ qinstances.instances }}"
  18. - name: Build current node group
  19. add_host:
  20. groups: oo_sg_current_nodes
  21. ansible_ssh_host: "{{ item.public_dns_name }}"
  22. name: "{{ item.public_dns_name }}"
  23. hostname: "{{ item.public_dns_name }}"
  24. when:
  25. - (item.tags.version | default('')) == openshift_aws_current_version
  26. - "'node' in item.tags['host-type']"
  27. with_items: "{{ qinstances.instances }}"
  28. - name: place all nodes into nodes group
  29. add_host:
  30. groups: nodes
  31. ansible_ssh_host: "{{ item.public_dns_name }}"
  32. name: "{{ item.public_dns_name }}"
  33. hostname: "{{ item.public_dns_name }}"
  34. with_items: "{{ qinstances.instances }}"