accept_nodes.yml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 node certificates when bootstrapping
  31. oc_csr_approve:
  32. oc_bin: "{{ hostvars[groups.masters.0]['first_master_client_binary'] }}"
  33. oc_conf: "{{ hostvars[groups.masters.0].openshift.common.config_base }}/master/admin.kubeconfig"
  34. node_list: "{{ instancesout.instances|map(attribute='private_dns_name') | list }}"
  35. register: aws_csr_approve
  36. retries: 30
  37. until: aws_csr_approve is succeeded
  38. delegate_to: "{{ groups.masters.0 }}"