accept.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #!/usr/bin/ansible-playbook
  2. ---
  3. - name: Setup the vpc and the master node group
  4. hosts: localhost
  5. remote_user: root
  6. gather_facts: no
  7. tasks:
  8. - name: Alert user to variables needed - clusterid
  9. debug:
  10. msg: "openshift_aws_clusterid={{ openshift_aws_clusterid | default('default') }}"
  11. - name: Alert user to variables needed - region
  12. debug:
  13. msg: "openshift_aws_region={{ openshift_aws_region | default('us-east-1') }}"
  14. - name: bring lib_openshift into scope
  15. include_role:
  16. name: lib_openshift
  17. - name: fetch masters
  18. ec2_remote_facts:
  19. region: "{{ openshift_aws_region | default('us-east-1') }}"
  20. filters:
  21. "tag:clusterid": "{{ openshift_aws_clusterid | default('default') }}"
  22. "tag:host-type": master
  23. instance-state-name: running
  24. register: mastersout
  25. retries: 20
  26. delay: 3
  27. until: "'instances' in mastersout and mastersout.instances|length > 0"
  28. - name: fetch new node instances
  29. ec2_remote_facts:
  30. region: "{{ openshift_aws_region | default('us-east-1') }}"
  31. filters:
  32. "tag:clusterid": "{{ openshift_aws_clusterid | default('default') }}"
  33. "tag:host-type": node
  34. instance-state-name: running
  35. register: instancesout
  36. retries: 20
  37. delay: 3
  38. until: "'instances' in instancesout and instancesout.instances|length > 0"
  39. - debug:
  40. msg: "{{ instancesout.instances|map(attribute='private_dns_name') | list }}"
  41. - name: approve nodes
  42. oc_adm_csr:
  43. #approve_all: True
  44. nodes: "{{ instancesout.instances|map(attribute='private_dns_name') | list }}"
  45. timeout: 60
  46. register: nodeout
  47. delegate_to: "{{ mastersout.instances[0].public_ip_address }}"