service.yml 1.2 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. - set_fact: scratch_group=tag_env-host-type-{{ cluster_id }}-openshift-node
  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: groups[scratch_group] | default([]) | difference(['localhost']) | difference(groups.status_terminated)
  19. - set_fact: scratch_group=tag_env-host-type-{{ cluster_id }}-openshift-master
  20. - add_host:
  21. name: "{{ item }}"
  22. groups: g_service_masters
  23. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user | default(ansible_ssh_user, true) }}"
  24. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  25. with_items: groups[scratch_group] | default([]) | difference(['localhost']) | difference(groups.status_terminated)
  26. - include: ../../common/openshift-node/service.yml
  27. - include: ../../common/openshift-master/service.yml