main.yaml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. ---
  2. - fail:
  3. msg: Only one Fluentd nodeselector key pair should be provided
  4. when: openshift_logging_fluentd_nodeselector.keys() | count > 1
  5. - name: Create temp directory for doing work in
  6. command: mktemp -d /tmp/openshift-logging-ansible-XXXXXX
  7. register: mktemp
  8. changed_when: False
  9. check_mode: no
  10. tags: logging_init
  11. - debug: msg="Created temp dir {{mktemp.stdout}}"
  12. - name: Create local temp directory for doing work in
  13. local_action: command mktemp -d /tmp/openshift-logging-ansible-XXXXXX
  14. register: local_tmp
  15. changed_when: False
  16. check_mode: no
  17. become: false
  18. - oc_obj:
  19. state: list
  20. kind: dc
  21. all_namespaces: true
  22. selector: "logging-infra,provider=openshift,component!=eventrouter"
  23. register: _logging_dcs
  24. - set_fact:
  25. _current_logging_namespace: "{{ _logging_dcs.results.results[0]['items'] | map(attribute='metadata.namespace') | list | unique | join(' ') }}"
  26. when:
  27. - _logging_dcs is defined
  28. - _logging_dcs.results | count > 0
  29. - _logging_dcs.results.results | count > 0
  30. - when:
  31. - logging_disable_namespace_check | default(false) | bool
  32. - _logging_namespace is defined
  33. - _current_logging_namespace.split(" ") | count > 0
  34. - _current_logging_namespace != ''
  35. - _logging_namespace != _current_logging_namespace
  36. block:
  37. - name: Set Logging message about installing in multiple namespaces
  38. run_once: true
  39. set_stats:
  40. data:
  41. installer_phase_logging:
  42. message: "Aggregated logging installed in multiple namespaces: \
  43. current namespace(s): {{ _current_logging_namespace }} \
  44. specified namespace: {{ _logging_namespace | default(_current_logging_namespace) }}"
  45. - debug:
  46. msg: "Aggregated logging installed in multiple namespaces: \
  47. current namespace(s): {{ _current_logging_namespace }} \
  48. specified namespace: {{ _logging_namespace | default(_current_logging_namespace) }}"
  49. - when: not logging_disable_namespace_check | default(false) | bool
  50. block:
  51. - assert:
  52. that:
  53. - _current_logging_namespace.split(" ") | count <= 1
  54. - not _logging_namespace is defined or not _current_logging_namespace or _logging_namespace == _current_logging_namespace
  55. msg: "Configuring aggregated logging in multiple namespaces is not supported: \
  56. current namespace(s): {{ _current_logging_namespace }} \
  57. specified namespace: {{ _logging_namespace | default(_current_logging_namespace) }}"
  58. - debug:
  59. msg: "Using the namespace '{{ _current_logging_namespace }}' which has an existing deployment"
  60. when:
  61. - _current_logging_namespace is defined
  62. - _current_logging_namespace != ''
  63. - set_fact:
  64. _logging_namespace: "{{ _current_logging_namespace if _current_logging_namespace else _logging_namespace | default('openshift-logging') }}"
  65. - when:
  66. - logging_disable_namespace_check | default(false) | bool
  67. - not _logging_namespace is defined
  68. block:
  69. - assert:
  70. that:
  71. - _current_logging_namespace.split(" ") | count == 1
  72. msg: "Multiple aggregated logging installations found in [{{ _current_logging_namespace }}], please specify which to use with _logging_namespace"
  73. - set_fact:
  74. _logging_namespace: "{{ _current_logging_namespace }}"
  75. - set_fact:
  76. openshift_logging_namespace: "{{ _logging_namespace if _logging_namespace else 'openshift-logging' }}"
  77. - include_tasks: install_logging.yaml
  78. when:
  79. - openshift_logging_install_logging | default(false) | bool
  80. - include_tasks: delete_logging.yaml
  81. when:
  82. - not openshift_logging_install_logging | default(false) | bool
  83. - name: Cleaning up local temp dir
  84. local_action: file path="{{ local_tmp.stdout }}" state=absent
  85. tags: logging_cleanup
  86. changed_when: False
  87. become: false
  88. - name: Cleaning up temp dir
  89. file:
  90. path: "{{ mktemp.stdout }}"
  91. state: absent
  92. tags: logging_cleanup
  93. changed_when: False
  94. become: false