main.yaml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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. - name: Set default image variables based on openshift_deployment_type
  30. include_vars: "{{ var_file_name }}"
  31. with_first_found:
  32. - "{{ openshift_deployment_type }}.yml"
  33. - "default_images.yml"
  34. loop_control:
  35. loop_var: var_file_name
  36. - name: Set fluentd image facts
  37. set_fact:
  38. openshift_logging_fluentd_image_prefix: "{{ openshift_logging_fluentd_image_prefix | default(__openshift_logging_fluentd_image_prefix) }}"
  39. openshift_logging_fluentd_image_version: "{{ openshift_logging_fluentd_image_version | default(__openshift_logging_fluentd_image_version) }}"
  40. - include_tasks: determine_version.yaml
  41. # allow passing in a tempdir
  42. - name: Create temp directory for doing work in
  43. command: mktemp -d /tmp/openshift-logging-ansible-XXXXXX
  44. register: mktemp
  45. changed_when: False
  46. - set_fact:
  47. tempdir: "{{ mktemp.stdout }}"
  48. - name: Create templates subdirectory
  49. file:
  50. state: directory
  51. path: "{{ tempdir }}/templates"
  52. mode: 0755
  53. changed_when: False
  54. # we want to make sure we have all the necessary components here
  55. # create service account
  56. - name: Create Fluentd service account
  57. oc_serviceaccount:
  58. state: present
  59. name: "aggregated-logging-fluentd"
  60. namespace: "{{ openshift_logging_fluentd_namespace }}"
  61. image_pull_secrets: "{{ openshift_logging_image_pull_secret }}"
  62. when: openshift_logging_image_pull_secret != ''
  63. - name: Create Fluentd service account
  64. oc_serviceaccount:
  65. state: present
  66. name: "aggregated-logging-fluentd"
  67. namespace: "{{ openshift_logging_fluentd_namespace }}"
  68. when:
  69. - openshift_logging_image_pull_secret == ''
  70. # set service account scc
  71. - name: Set privileged permissions for Fluentd
  72. oc_adm_policy_user:
  73. namespace: "{{ openshift_logging_fluentd_namespace }}"
  74. resource_kind: scc
  75. resource_name: privileged
  76. state: present
  77. user: "system:serviceaccount:{{ openshift_logging_fluentd_namespace }}:aggregated-logging-fluentd"
  78. # set service account permissions
  79. - name: Set cluster-reader permissions for Fluentd
  80. oc_adm_policy_user:
  81. namespace: "{{ openshift_logging_fluentd_namespace }}"
  82. resource_kind: cluster-role
  83. resource_name: cluster-reader
  84. state: present
  85. user: "system:serviceaccount:{{ openshift_logging_fluentd_namespace }}:aggregated-logging-fluentd"
  86. # create Fluentd configmap
  87. - template:
  88. src: fluent.conf.j2
  89. dest: "{{ tempdir }}/fluent.conf"
  90. vars:
  91. deploy_type: "{{ openshift_logging_fluentd_deployment_type }}"
  92. - copy:
  93. src: fluentd-throttle-config.yaml
  94. dest: "{{ tempdir }}/fluentd-throttle-config.yaml"
  95. - copy:
  96. src: secure-forward.conf
  97. dest: "{{ tempdir }}/secure-forward.conf"
  98. - import_role:
  99. name: openshift_logging
  100. tasks_from: patch_configmap_files.yaml
  101. vars:
  102. configmap_name: "logging-fluentd"
  103. configmap_namespace: "logging"
  104. configmap_file_names:
  105. - current_file: "fluent.conf"
  106. new_file: "{{ tempdir }}/fluent.conf"
  107. - current_file: "throttle-config.yaml"
  108. new_file: "{{ tempdir }}/fluentd-throttle-config.yaml"
  109. - current_file: "secure-forward.conf"
  110. new_file: "{{ tempdir }}/secure-forward.conf"
  111. - name: Set Fluentd configmap
  112. oc_configmap:
  113. state: present
  114. name: "logging-fluentd"
  115. namespace: "{{ openshift_logging_fluentd_namespace }}"
  116. from_file:
  117. fluent.conf: "{{ tempdir }}/fluent.conf"
  118. throttle-config.yaml: "{{ tempdir }}/fluentd-throttle-config.yaml"
  119. secure-forward.conf: "{{ tempdir }}/secure-forward.conf"
  120. # create Fluentd secret
  121. # TODO: add aggregation secrets if necessary
  122. - name: Set logging-fluentd secret
  123. oc_secret:
  124. state: present
  125. name: logging-fluentd
  126. namespace: "{{ openshift_logging_fluentd_namespace }}"
  127. files:
  128. - name: ca
  129. path: "{{ generated_certs_dir }}/ca.crt"
  130. - name: key
  131. path: "{{ generated_certs_dir }}/system.logging.fluentd.key"
  132. - name: cert
  133. path: "{{ generated_certs_dir }}/system.logging.fluentd.crt"
  134. # create Fluentd daemonset
  135. # this should change based on the type of fluentd deployment to be done...
  136. # TODO: pass in aggregation configurations
  137. - name: Generate logging-fluentd daemonset definition
  138. template:
  139. src: fluentd.j2
  140. dest: "{{ tempdir }}/templates/logging-fluentd.yaml"
  141. vars:
  142. daemonset_name: logging-fluentd
  143. daemonset_component: fluentd
  144. daemonset_container_name: fluentd-elasticsearch
  145. daemonset_serviceAccount: aggregated-logging-fluentd
  146. app_host: "{{ openshift_logging_fluentd_app_host }}"
  147. app_port: "{{ openshift_logging_fluentd_app_port }}"
  148. ops_host: "{{ openshift_logging_fluentd_ops_host }}"
  149. ops_port: "{{ openshift_logging_fluentd_ops_port }}"
  150. fluentd_nodeselector_key: "{{ openshift_logging_fluentd_nodeselector.keys()[0] }}"
  151. fluentd_nodeselector_value: "{{ openshift_logging_fluentd_nodeselector.values()[0] }}"
  152. fluentd_cpu_limit: "{{ openshift_logging_fluentd_cpu_limit }}"
  153. fluentd_cpu_request: "{{ openshift_logging_fluentd_cpu_request | min_cpu(openshift_logging_fluentd_cpu_limit | default(none)) }}"
  154. fluentd_memory_limit: "{{ openshift_logging_fluentd_memory_limit }}"
  155. audit_container_engine: "{{ openshift_logging_fluentd_audit_container_engine | default(False) | bool }}"
  156. audit_log_file: "{{ openshift_logging_fluentd_audit_file | default() }}"
  157. audit_pos_log_file: "{{ openshift_logging_fluentd_audit_pos_file | default() }}"
  158. check_mode: no
  159. changed_when: no
  160. - name: Set logging-fluentd daemonset
  161. oc_obj:
  162. state: present
  163. name: logging-fluentd
  164. namespace: "{{ openshift_logging_fluentd_namespace }}"
  165. kind: daemonset
  166. files:
  167. - "{{ tempdir }}/templates/logging-fluentd.yaml"
  168. delete_after: true
  169. # Scale up Fluentd
  170. - name: Retrieve list of Fluentd hosts
  171. oc_obj:
  172. state: list
  173. kind: node
  174. when: "'--all' in openshift_logging_fluentd_hosts"
  175. register: fluentd_hosts
  176. - name: Set openshift_logging_fluentd_hosts
  177. set_fact:
  178. openshift_logging_fluentd_hosts: "{{ fluentd_hosts.results.results[0]['items'] | map(attribute='metadata.name') | list }}"
  179. when: "'--all' in openshift_logging_fluentd_hosts"
  180. - include_tasks: label_and_wait.yaml
  181. vars:
  182. node: "{{ fluentd_host }}"
  183. with_items: "{{ openshift_logging_fluentd_hosts }}"
  184. loop_control:
  185. loop_var: fluentd_host
  186. - name: Delete temp directory
  187. file:
  188. name: "{{ tempdir }}"
  189. state: absent
  190. changed_when: False