service.yml 1.1 KB

1234567891011121314151617181920212223242526272829
  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. - cluster_hosts.yml
  10. tasks:
  11. - fail: msg="cluster_id is required to be injected in this playbook"
  12. when: cluster_id is not defined
  13. - add_host:
  14. name: "{{ item }}"
  15. groups: g_service_nodes
  16. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user | default(ansible_ssh_user, true) }}"
  17. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  18. with_items: "{{ node_hosts | default([]) | difference(['localhost']) | difference(groups.status_terminated) }}"
  19. - add_host:
  20. name: "{{ item }}"
  21. groups: g_service_masters
  22. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user | default(ansible_ssh_user, true) }}"
  23. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  24. with_items: "{{ master_hosts | default([]) | difference(['localhost']) | difference(groups.status_terminated) }}"
  25. - include: ../../common/openshift-node/service.yml
  26. - include: ../../common/openshift-master/service.yml