main.yaml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. ---
  2. - fail:
  3. msg: The ES_COPY feature is no longer supported. Please remove the variable from your inventory
  4. when: openshift_logging_fluentd_es_copy is defined
  5. - fail:
  6. msg: Only one Fluentd nodeselector key pair should be provided
  7. when: openshift_logging_fluentd_nodeselector.keys() | count > 1
  8. - fail:
  9. msg: Application logs destination is required
  10. when: not openshift_logging_fluentd_app_host or openshift_logging_fluentd_app_host == ''
  11. - fail:
  12. msg: Operations logs destination is required
  13. when: not openshift_logging_fluentd_ops_host or openshift_logging_fluentd_ops_host == ''
  14. - fail:
  15. msg: Invalid deployment type, one of ['hosted', 'secure-aggregator', 'secure-host'] allowed
  16. when: not openshift_logging_fluentd_deployment_type in __allowed_fluentd_types
  17. - debug:
  18. msg: openshift_logging_fluentd_use_journal is deprecated. Fluentd will automatically detect which logging driver is being used.
  19. when: openshift_logging_fluentd_use_journal is defined
  20. - debug:
  21. msg: openshift_hosted_logging_use_journal is deprecated. Fluentd will automatically detect which logging driver is being used.
  22. when: openshift_hosted_logging_use_journal is defined
  23. - fail:
  24. msg: Invalid openshift_logging_mux_client_mode [{{ openshift_logging_mux_client_mode }}], one of {{ __allowed_mux_client_modes }} allowed
  25. when: openshift_logging_mux_client_mode is defined and not openshift_logging_mux_client_mode in __allowed_mux_client_modes
  26. - debug:
  27. msg: WARNING Use of openshift_logging_mux_client_mode=minimal is not recommended due to current scaling issues
  28. when: openshift_logging_mux_client_mode is defined and openshift_logging_mux_client_mode == 'minimal'
  29. # allow passing in a tempdir
  30. - name: Create temp directory for doing work in
  31. command: mktemp -d /tmp/openshift-logging-ansible-XXXXXX
  32. register: mktemp
  33. changed_when: False
  34. - set_fact:
  35. tempdir: "{{ mktemp.stdout }}"
  36. - name: Create templates subdirectory
  37. file:
  38. state: directory
  39. path: "{{ tempdir }}/templates"
  40. mode: 0755
  41. changed_when: False
  42. # we want to make sure we have all the necessary components here
  43. # create service account
  44. - name: Create Fluentd service account
  45. oc_serviceaccount:
  46. state: present
  47. name: "aggregated-logging-fluentd"
  48. namespace: "{{ openshift_logging_fluentd_namespace }}"
  49. image_pull_secrets: "{{ openshift_logging_image_pull_secret }}"
  50. when: openshift_logging_image_pull_secret != ''
  51. - name: Create Fluentd service account
  52. oc_serviceaccount:
  53. state: present
  54. name: "aggregated-logging-fluentd"
  55. namespace: "{{ openshift_logging_fluentd_namespace }}"
  56. when:
  57. - openshift_logging_image_pull_secret == ''
  58. # set service account scc
  59. - name: Set privileged permissions for Fluentd
  60. oc_adm_policy_user:
  61. namespace: "{{ openshift_logging_fluentd_namespace }}"
  62. resource_kind: scc
  63. resource_name: privileged
  64. state: present
  65. user: "system:serviceaccount:{{ openshift_logging_fluentd_namespace }}:aggregated-logging-fluentd"
  66. # set service account permissions
  67. - name: Set cluster-reader permissions for Fluentd
  68. oc_adm_policy_user:
  69. namespace: "{{ openshift_logging_fluentd_namespace }}"
  70. resource_kind: cluster-role
  71. resource_name: cluster-reader
  72. state: present
  73. user: "system:serviceaccount:{{ openshift_logging_fluentd_namespace }}:aggregated-logging-fluentd"
  74. # create Fluentd configmap
  75. - template:
  76. src: "{{ __base_file_dir }}/fluent.conf.j2"
  77. dest: "{{ tempdir }}/fluent.conf"
  78. vars:
  79. deploy_type: "{{ openshift_logging_fluentd_deployment_type }}"
  80. - copy:
  81. src: "{{ __base_file_dir }}/fluentd-throttle-config.yaml"
  82. dest: "{{ tempdir }}/fluentd-throttle-config.yaml"
  83. - copy:
  84. src: "{{ __base_file_dir }}/secure-forward.conf"
  85. dest: "{{ tempdir }}/secure-forward.conf"
  86. - import_role:
  87. name: openshift_logging
  88. tasks_from: patch_configmap_files.yaml
  89. vars:
  90. configmap_name: "logging-fluentd"
  91. configmap_namespace: "{{ openshift_logging_namespace }}"
  92. configmap_file_names:
  93. - current_file: "fluent.conf"
  94. new_file: "{{ tempdir }}/fluent.conf"
  95. - current_file: "throttle-config.yaml"
  96. new_file: "{{ tempdir }}/fluentd-throttle-config.yaml"
  97. - current_file: "secure-forward.conf"
  98. new_file: "{{ tempdir }}/secure-forward.conf"
  99. - name: Set Fluentd configmap
  100. oc_configmap:
  101. state: present
  102. name: "logging-fluentd"
  103. namespace: "{{ openshift_logging_fluentd_namespace }}"
  104. from_file:
  105. fluent.conf: "{{ tempdir }}/fluent.conf"
  106. throttle-config.yaml: "{{ tempdir }}/fluentd-throttle-config.yaml"
  107. secure-forward.conf: "{{ tempdir }}/secure-forward.conf"
  108. # create Fluentd secret
  109. # if we don't provide a location for provided certs then we use from generated_certs_dir
  110. # ops will use the same certs as non-ops by default
  111. # TODO: add aggregation secrets if necessary
  112. - name: Set logging-fluentd secret
  113. oc_secret:
  114. state: present
  115. name: logging-fluentd
  116. namespace: "{{ openshift_logging_fluentd_namespace }}"
  117. files:
  118. - name: ca
  119. path: "{{ openshift_logging_fluentd_ca_path | default(generated_certs_dir ~ '/ca.crt') }}"
  120. - name: key
  121. path: "{{ openshift_logging_fluentd_key_path | default(generated_certs_dir ~ '/system.logging.fluentd.key') }}"
  122. - name: cert
  123. path: "{{ openshift_logging_fluentd_cert_path | default(generated_certs_dir ~ '/system.logging.fluentd.crt') }}"
  124. - name: ops-ca
  125. path: "{{ openshift_logging_fluentd_ops_ca_path | default(generated_certs_dir ~ '/ca.crt') }}"
  126. - name: ops-key
  127. path: "{{ openshift_logging_fluentd_ops_key_path | default(generated_certs_dir ~ '/system.logging.fluentd.key') }}"
  128. - name: ops-cert
  129. path: "{{ openshift_logging_fluentd_ops_cert_path | default(generated_certs_dir ~ '/system.logging.fluentd.crt') }}"
  130. # create Fluentd daemonset
  131. # this should change based on the type of fluentd deployment to be done...
  132. # TODO: pass in aggregation configurations
  133. - name: Generate logging-fluentd daemonset definition
  134. template:
  135. src: "{{ __base_file_dir }}/fluentd.j2"
  136. dest: "{{ tempdir }}/templates/logging-fluentd.yaml"
  137. vars:
  138. daemonset_name: logging-fluentd
  139. daemonset_component: fluentd
  140. daemonset_container_name: fluentd-elasticsearch
  141. daemonset_serviceAccount: aggregated-logging-fluentd
  142. app_host: "{{ openshift_logging_fluentd_app_host }}"
  143. app_port: "{{ openshift_logging_fluentd_app_port }}"
  144. ops_host: "{{ openshift_logging_fluentd_ops_host }}"
  145. ops_port: "{{ openshift_logging_fluentd_ops_port }}"
  146. fluentd_nodeselector_key: "{{ openshift_logging_fluentd_nodeselector.keys() | first }}"
  147. fluentd_nodeselector_value: "{{ openshift_logging_fluentd_nodeselector.values() | first }}"
  148. fluentd_cpu_limit: "{{ openshift_logging_fluentd_cpu_limit }}"
  149. fluentd_cpu_request: "{{ openshift_logging_fluentd_cpu_request | min_cpu(openshift_logging_fluentd_cpu_limit | default(none)) }}"
  150. fluentd_memory_limit: "{{ openshift_logging_fluentd_memory_limit }}"
  151. audit_container_engine: "{{ openshift_logging_fluentd_audit_container_engine | default(False) | bool }}"
  152. audit_log_file: "{{ openshift_logging_fluentd_audit_file | default() }}"
  153. audit_pos_log_file: "{{ openshift_logging_fluentd_audit_pos_file | default() }}"
  154. check_mode: no
  155. changed_when: no
  156. - name: Set logging-fluentd daemonset
  157. oc_obj:
  158. state: present
  159. name: logging-fluentd
  160. namespace: "{{ openshift_logging_fluentd_namespace }}"
  161. kind: daemonset
  162. files:
  163. - "{{ tempdir }}/templates/logging-fluentd.yaml"
  164. delete_after: true
  165. # Scale up Fluentd
  166. - name: Retrieve list of Fluentd hosts
  167. oc_obj:
  168. state: list
  169. kind: node
  170. when: "'--all' in openshift_logging_fluentd_hosts"
  171. register: fluentd_hosts
  172. - name: Set openshift_logging_fluentd_hosts
  173. set_fact:
  174. openshift_logging_fluentd_hosts: "{{ fluentd_hosts.results.results[0]['items'] | map(attribute='metadata.name') | list }}"
  175. when: "'--all' in openshift_logging_fluentd_hosts"
  176. - import_tasks: label_and_wait.yaml
  177. - name: Delete temp directory
  178. file:
  179. name: "{{ tempdir }}"
  180. state: absent
  181. changed_when: False