main.yaml 7.5 KB

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