main.yaml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. ---
  2. - fail:
  3. msg: Only one Fluentd nodeselector key pair should be provided
  4. when: "{{ openshift_logging_fluentd_nodeselector.keys() | count }} > 1"
  5. - fail:
  6. msg: Application logs destination is required
  7. when: not openshift_logging_fluentd_app_host or openshift_logging_fluentd_app_host == ''
  8. - fail:
  9. msg: Operations logs destination is required
  10. when: not openshift_logging_fluentd_ops_host or openshift_logging_fluentd_ops_host == ''
  11. - fail:
  12. msg: Invalid deployment type, one of ['hosted', 'secure-aggregator', 'secure-host'] allowed
  13. when: not openshift_logging_fluentd_deployment_type in __allowed_fluentd_types
  14. - include: determine_version.yaml
  15. # allow passing in a tempdir
  16. - name: Create temp directory for doing work in
  17. command: mktemp -d /tmp/openshift-logging-ansible-XXXXXX
  18. register: mktemp
  19. changed_when: False
  20. - set_fact:
  21. tempdir: "{{ mktemp.stdout }}"
  22. - name: Create templates subdirectory
  23. file:
  24. state: directory
  25. path: "{{ tempdir }}/templates"
  26. mode: 0755
  27. changed_when: False
  28. # we want to make sure we have all the necessary components here
  29. # create service account
  30. - name: Create Fluentd service account
  31. oc_serviceaccount:
  32. state: present
  33. name: "aggregated-logging-fluentd"
  34. namespace: "{{ openshift_logging_fluentd_namespace }}"
  35. image_pull_secrets: "{{ openshift_logging_image_pull_secret }}"
  36. when: openshift_logging_image_pull_secret != ''
  37. - name: Create Fluentd service account
  38. oc_serviceaccount:
  39. state: present
  40. name: "aggregated-logging-fluentd"
  41. namespace: "{{ openshift_logging_fluentd_namespace }}"
  42. when:
  43. - openshift_logging_image_pull_secret == ''
  44. # set service account scc
  45. - name: Set privileged permissions for Fluentd
  46. oc_adm_policy_user:
  47. namespace: "{{ openshift_logging_fluentd_namespace }}"
  48. resource_kind: scc
  49. resource_name: privileged
  50. state: present
  51. user: "system:serviceaccount:{{ openshift_logging_fluentd_namespace }}:aggregated-logging-fluentd"
  52. # set service account permissions
  53. - name: Set cluster-reader permissions for Fluentd
  54. oc_adm_policy_user:
  55. namespace: "{{ openshift_logging_fluentd_namespace }}"
  56. resource_kind: cluster-role
  57. resource_name: cluster-reader
  58. state: present
  59. user: "system:serviceaccount:{{ openshift_logging_fluentd_namespace }}:aggregated-logging-fluentd"
  60. # create Fluentd configmap
  61. - template:
  62. src: fluent.conf.j2
  63. dest: "{{ tempdir }}/fluent.conf"
  64. vars:
  65. deploy_type: "{{ openshift_logging_fluentd_deployment_type }}"
  66. when: fluentd_config_contents is undefined
  67. changed_when: no
  68. - copy:
  69. src: fluentd-throttle-config.yaml
  70. dest: "{{ tempdir }}/fluentd-throttle-config.yaml"
  71. when: fluentd_throttle_contents is undefined
  72. changed_when: no
  73. - copy:
  74. src: secure-forward.conf
  75. dest: "{{ tempdir }}/secure-forward.conf"
  76. when: fluentd_securefoward_contents is undefined
  77. changed_when: no
  78. - copy:
  79. content: "{{ fluentd_config_contents }}"
  80. dest: "{{ tempdir }}/fluent.conf"
  81. when: fluentd_config_contents is defined
  82. changed_when: no
  83. - copy:
  84. content: "{{ fluentd_throttle_contents }}"
  85. dest: "{{ tempdir }}/fluentd-throttle-config.yaml"
  86. when: fluentd_throttle_contents is defined
  87. changed_when: no
  88. - copy:
  89. content: "{{ fluentd_secureforward_contents }}"
  90. dest: "{{ tempdir }}/secure-forward.conf"
  91. when: fluentd_secureforward_contents is defined
  92. changed_when: no
  93. - name: Set Fluentd configmap
  94. oc_configmap:
  95. state: present
  96. name: "logging-fluentd"
  97. namespace: "{{ openshift_logging_fluentd_namespace }}"
  98. from_file:
  99. fluent.conf: "{{ tempdir }}/fluent.conf"
  100. throttle-config.yaml: "{{ tempdir }}/fluentd-throttle-config.yaml"
  101. secure-forward.conf: "{{ tempdir }}/secure-forward.conf"
  102. # create Fluentd secret
  103. # TODO: add aggregation secrets if necessary
  104. - name: Set logging-fluentd secret
  105. oc_secret:
  106. state: present
  107. name: logging-fluentd
  108. namespace: "{{ openshift_logging_fluentd_namespace }}"
  109. files:
  110. - name: ca
  111. path: "{{ generated_certs_dir }}/ca.crt"
  112. - name: key
  113. path: "{{ generated_certs_dir }}/system.logging.fluentd.key"
  114. - name: cert
  115. path: "{{ generated_certs_dir }}/system.logging.fluentd.crt"
  116. # create Fluentd daemonset
  117. # this should change based on the type of fluentd deployment to be done...
  118. # TODO: pass in aggregation configurations
  119. - name: Generate logging-fluentd daemonset definition
  120. template:
  121. src: fluentd.j2
  122. dest: "{{ tempdir }}/templates/logging-fluentd.yaml"
  123. vars:
  124. daemonset_name: logging-fluentd
  125. daemonset_component: fluentd
  126. daemonset_container_name: fluentd-elasticsearch
  127. daemonset_serviceAccount: aggregated-logging-fluentd
  128. app_host: "{{ openshift_logging_fluentd_app_host }}"
  129. app_port: "{{ openshift_logging_fluentd_app_port }}"
  130. ops_host: "{{ openshift_logging_fluentd_ops_host }}"
  131. ops_port: "{{ openshift_logging_fluentd_ops_port }}"
  132. fluentd_nodeselector_key: "{{ openshift_logging_fluentd_nodeselector.keys()[0] }}"
  133. fluentd_nodeselector_value: "{{ openshift_logging_fluentd_nodeselector.values()[0] }}"
  134. check_mode: no
  135. changed_when: no
  136. - name: Set logging-fluentd daemonset
  137. oc_obj:
  138. state: present
  139. name: logging-fluentd
  140. namespace: "{{ openshift_logging_fluentd_namespace }}"
  141. kind: daemonset
  142. files:
  143. - "{{ tempdir }}/templates/logging-fluentd.yaml"
  144. delete_after: true
  145. # Scale up Fluentd
  146. - name: Retrieve list of Fluentd hosts
  147. oc_obj:
  148. state: list
  149. kind: node
  150. when: "'--all' in openshift_logging_fluentd_hosts"
  151. register: fluentd_hosts
  152. - name: Set openshift_logging_fluentd_hosts
  153. set_fact:
  154. openshift_logging_fluentd_hosts: "{{ fluentd_hosts.results.results[0]['items'] | map(attribute='metadata.name') | list }}"
  155. when: "'--all' in openshift_logging_fluentd_hosts"
  156. - include: label_and_wait.yaml
  157. vars:
  158. node: "{{ fluentd_host }}"
  159. with_items: "{{ openshift_logging_fluentd_hosts }}"
  160. loop_control:
  161. loop_var: fluentd_host
  162. - name: Delete temp directory
  163. file:
  164. name: "{{ tempdir }}"
  165. state: absent
  166. changed_when: False