accept_nodes.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. - include_tasks: setup_master_group.yml
  3. - name: fetch masters
  4. ec2_instance_facts:
  5. region: "{{ openshift_aws_region | default('us-east-1') }}"
  6. filters:
  7. "{{ {'tag:kubernetes.io/cluster/' ~ openshift_aws_clusterid: openshift_aws_clusterid,
  8. 'tag:host-type': 'master', 'instance-state-name': 'running'} }}"
  9. register: mastersout
  10. retries: 20
  11. delay: 3
  12. until: "'instances' in mastersout and mastersout.instances|length > 0"
  13. - name: fetch new node instances
  14. ec2_instance_facts:
  15. region: "{{ openshift_aws_region }}"
  16. filters:
  17. "{{ {'tag:kubernetes.io/cluster/' ~ openshift_aws_clusterid: openshift_aws_clusterid,
  18. 'tag:host-type': 'node',
  19. 'instance-state-name': 'running'} }}"
  20. register: instancesout
  21. retries: 20
  22. delay: 3
  23. until: "'instances' in instancesout and instancesout.instances|length > 0"
  24. - name: Dump the private dns names
  25. debug:
  26. msg: "{{ instancesout.instances|map(attribute='private_dns_name') | list }}"
  27. - name: Dump the master public ip address
  28. debug:
  29. msg: "{{ mastersout.instances[0].public_ip_address }}"
  30. - name: approve nodes
  31. oc_adm_csr:
  32. #approve_all: True
  33. nodes: "{{ instancesout.instances|map(attribute='private_dns_name') | list }}"
  34. timeout: 60
  35. fail_on_timeout: "{{ openshift_aws_node_accept_fail_on_timeout | default(false) | bool }}"
  36. register: nodeout
  37. delegate_to: "{{ groups.masters.0 }}"