service.yml 1.0 KB

123456789101112131415161718192021222324252627282930
  1. ---
  2. - name: Call same systemctl command for openshift on all instance(s)
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. vars_files:
  8. - vars.yml
  9. tasks:
  10. - fail: msg="cluster_id is required to be injected in this playbook"
  11. when: cluster_id is not defined
  12. - name: Evaluate g_service_masters
  13. add_host:
  14. name: "{{ item }}"
  15. groups: g_service_masters
  16. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  17. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  18. with_items: groups["tag_env-host-type_{{ cluster_id }}-openshift-master"] | default([])
  19. - name: Evaluate g_service_nodes
  20. add_host:
  21. name: "{{ item }}"
  22. groups: g_service_nodes
  23. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  24. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  25. with_items: groups["tag_env-host-type_{{ cluster_id }}-openshift-node"] | default([])
  26. - include: ../../common/openshift-node/service.yml
  27. - include: ../../common/openshift-master/service.yml