service.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. # TODO: need to figure out a plan for setting hostname, currently the default
  3. # is localhost, so no hostname value (or public_hostname) value is getting
  4. # assigned
  5. - name: Call same systemctl command for openshift on all instance(s)
  6. hosts: localhost
  7. become: no
  8. connection: local
  9. gather_facts: no
  10. vars_files:
  11. - vars.yml
  12. tasks:
  13. - fail: msg="cluster_id is required to be injected in this playbook"
  14. when: cluster_id is not defined
  15. - name: Evaluate g_service_masters
  16. add_host:
  17. name: "{{ item }}"
  18. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  19. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  20. groups: g_service_masters
  21. with_items: groups["tag_env-host-type-{{ cluster_id }}-openshift-master"] | default([])
  22. - name: Evaluate g_service_nodes
  23. add_host:
  24. name: "{{ item }}"
  25. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  26. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  27. groups: g_service_nodes
  28. with_items: groups["tag_env-host-type-{{ cluster_id }}-openshift-node"] | default([])
  29. - include: ../../common/openshift-node/service.yml
  30. - include: ../../common/openshift-master/service.yml