openshift-logging.yml 944 B

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. #
  3. # This playbook is a preview of upcoming changes for installing
  4. # Hosted logging on. See inventory/byo/hosts.*.example for the
  5. # currently supported method.
  6. #
  7. - name: Create initial host groups for localhost
  8. hosts: localhost
  9. connection: local
  10. become: no
  11. gather_facts: no
  12. tags:
  13. - always
  14. tasks:
  15. - include_vars: ../../byo/openshift-cluster/cluster_hosts.yml
  16. - name: Evaluate group l_oo_all_hosts
  17. add_host:
  18. name: "{{ item }}"
  19. groups: l_oo_all_hosts
  20. with_items: "{{ g_all_hosts | default([]) }}"
  21. changed_when: False
  22. - name: Create initial host groups for all hosts
  23. hosts: l_oo_all_hosts
  24. gather_facts: no
  25. tags:
  26. - always
  27. tasks:
  28. - include_vars: ../../byo/openshift-cluster/cluster_hosts.yml
  29. - include: ../../common/openshift-cluster/openshift_logging.yml
  30. vars:
  31. openshift_cluster_id: "{{ cluster_id | default('default') }}"
  32. openshift_debug_level: "{{ debug_level | default(2) }}"