setup_master_group.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: Alert user to variables needed - clusterid
  3. debug:
  4. msg: "openshift_aws_clusterid={{ openshift_aws_clusterid }}"
  5. - name: Alert user to variables needed - region
  6. debug:
  7. msg: "openshift_aws_region={{ openshift_aws_region }}"
  8. - name: fetch newly created instances
  9. ec2_remote_facts:
  10. region: "{{ openshift_aws_region }}"
  11. filters:
  12. "tag:clusterid": "{{ openshift_aws_clusterid }}"
  13. "tag:host-type": master
  14. instance-state-name: running
  15. register: instancesout
  16. retries: 20
  17. delay: 3
  18. until: instancesout.instances|length > 0
  19. - name: add new master to masters group
  20. add_host:
  21. groups: "{{ openshift_aws_masters_groups }}"
  22. name: "{{ item.public_dns_name }}"
  23. hostname: "{{ openshift_aws_clusterid }}-master-{{ item.id[:-5] }}"
  24. with_items: "{{ instancesout.instances }}"
  25. - name: wait for ssh to become available
  26. wait_for:
  27. port: 22
  28. host: "{{ item.public_dns_name }}"
  29. timeout: 300
  30. search_regex: OpenSSH
  31. with_items: "{{ instancesout.instances }}"