accept_nodes.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. - name: fetch masters
  3. ec2_remote_facts:
  4. region: "{{ openshift_aws_region | default('us-east-1') }}"
  5. filters:
  6. "{{ {'tag:kubernetes.io/cluster/' ~ openshift_aws_clusterid: openshift_aws_clusterid,
  7. 'tag:host-type': 'master', 'instance-state-name': 'running'} }}"
  8. register: mastersout
  9. retries: 20
  10. delay: 3
  11. until: "'instances' in mastersout and mastersout.instances|length > 0"
  12. - name: fetch new node instances
  13. ec2_remote_facts:
  14. region: "{{ openshift_aws_region }}"
  15. filters:
  16. "{{ {'tag:kubernetes.io/cluster/' ~ openshift_aws_clusterid: openshift_aws_clusterid,
  17. 'tag:host-type': 'node',
  18. 'instance-state-name': 'running'} }}"
  19. register: instancesout
  20. retries: 20
  21. delay: 3
  22. until: "'instances' in instancesout and instancesout.instances|length > 0"
  23. - debug:
  24. msg: "{{ instancesout.instances|map(attribute='private_dns_name') | list }}"
  25. - name: approve nodes
  26. oc_adm_csr:
  27. #approve_all: True
  28. nodes: "{{ instancesout.instances|map(attribute='private_dns_name') | list }}"
  29. timeout: 60
  30. register: nodeout
  31. delegate_to: "{{ mastersout.instances[0].public_ip_address }}"