main.yaml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. ---
  2. - name: Set default image variables based on deployment_type
  3. include_vars: "{{ var_file_name }}"
  4. with_first_found:
  5. - "{{ openshift_deployment_type }}.yml"
  6. - "default_images.yml"
  7. loop_control:
  8. loop_var: var_file_name
  9. - name: Set curator image facts
  10. set_fact:
  11. openshift_logging_curator_image_prefix: "{{ openshift_logging_curator_image_prefix | default(__openshift_logging_curator_image_prefix) }}"
  12. openshift_logging_curator_image_version: "{{ openshift_logging_curator_image_version | default(__openshift_logging_curator_image_version) }}"
  13. - name: Detect running upgrade
  14. set_fact:
  15. is_upgrade: "{{ openshift_logging_facts['curator']['configmaps']['logging-curator'] is defined }}"
  16. - name: Ensure that Logging Curator has nodes to run on
  17. import_role:
  18. name: openshift_control_plane
  19. tasks_from: ensure_nodes_matching_selector.yml
  20. vars:
  21. openshift_master_ensure_nodes_selector: "{{ openshift_logging_curator_nodeselector | map_to_pairs }}"
  22. openshift_master_ensure_nodes_service: Logging Curator
  23. # allow passing in a tempdir
  24. - name: Create temp directory for doing work in
  25. command: mktemp -d /tmp/openshift-logging-ansible-XXXXXX
  26. register: mktemp
  27. changed_when: False
  28. - set_fact:
  29. tempdir: "{{ mktemp.stdout }}"
  30. # This may not be necessary in this role
  31. - name: Create templates subdirectory
  32. file:
  33. state: directory
  34. path: "{{ tempdir }}/templates"
  35. mode: 0755
  36. changed_when: False
  37. # we want to make sure we have all the necessary components here
  38. # service account
  39. - name: Create Curator service account
  40. oc_serviceaccount:
  41. state: present
  42. name: "aggregated-logging-curator"
  43. namespace: "{{ openshift_logging_namespace }}"
  44. image_pull_secrets: "{{ openshift_logging_image_pull_secret }}"
  45. when: openshift_logging_image_pull_secret != ''
  46. - name: Create Curator service account
  47. oc_serviceaccount:
  48. state: present
  49. name: "aggregated-logging-curator"
  50. namespace: "{{ openshift_logging_namespace }}"
  51. when:
  52. - openshift_logging_image_pull_secret == ''
  53. # secret
  54. - name: Set Curator secret
  55. oc_secret:
  56. state: present
  57. name: "logging-curator"
  58. namespace: "{{ openshift_logging_namespace }}"
  59. files:
  60. - name: ca
  61. path: "{{ generated_certs_dir }}/ca.crt"
  62. - name: key
  63. path: "{{ generated_certs_dir }}/system.logging.curator.key"
  64. - name: cert
  65. path: "{{ generated_certs_dir }}/system.logging.curator.crt"
  66. - set_fact:
  67. curator_name: "{{ 'logging-curator' ~ ( (openshift_logging_curator_ops_deployment | default(false) | bool) | ternary('-ops', '') ) }}"
  68. curator_component: "{{ 'curator' ~ ( (openshift_logging_curator_ops_deployment | default(false) | bool) | ternary('-ops', '') ) }}"
  69. # Deployment Config - v2.x
  70. - when: not openshift_logging_es5_techpreview
  71. block:
  72. - name: Generate Curator deploymentconfig
  73. template:
  74. src: "{{ __base_file_dir }}/curator.j2"
  75. dest: "{{ tempdir }}/templates/curator-dc.yaml"
  76. vars:
  77. component: "{{ curator_component }}"
  78. logging_component: curator
  79. deploy_name: "{{ curator_name }}"
  80. image: "{{openshift_logging_curator_image_prefix}}logging-curator:{{openshift_logging_curator_image_version}}"
  81. es_host: "{{ openshift_logging_curator_es_host }}"
  82. es_port: "{{ openshift_logging_curator_es_port }}"
  83. curator_cpu_limit: "{{ openshift_logging_curator_cpu_limit }}"
  84. curator_cpu_request: "{{ openshift_logging_curator_cpu_request | min_cpu(openshift_logging_curator_cpu_limit | default(none)) }}"
  85. curator_memory_limit: "{{ openshift_logging_curator_memory_limit }}"
  86. curator_replicas: "{{ openshift_logging_curator_replicas | default (1) }}"
  87. curator_node_selector: "{{openshift_logging_curator_nodeselector | default({})}}"
  88. check_mode: no
  89. changed_when: no
  90. - copy:
  91. src: "{{ __base_file_dir }}/curator.yml"
  92. dest: "{{ tempdir }}/curator.yml"
  93. changed_when: no
  94. - import_role:
  95. name: openshift_logging
  96. tasks_from: patch_configmap_files.yaml
  97. vars:
  98. configmap_name: "logging-curator"
  99. configmap_namespace: "logging"
  100. configmap_file_names:
  101. - current_file: "config.yaml"
  102. new_file: "{{ tempdir }}/curator.yml"
  103. - name: Set Curator configmap
  104. oc_configmap:
  105. state: present
  106. name: "logging-curator"
  107. namespace: "{{ openshift_logging_namespace }}"
  108. from_file:
  109. config.yaml: "{{ tempdir }}/curator.yml"
  110. - name: Set Curator DC
  111. oc_obj:
  112. state: present
  113. name: "{{ curator_name }}"
  114. namespace: "{{ openshift_logging_namespace }}"
  115. kind: dc
  116. files:
  117. - "{{ tempdir }}/templates/curator-dc.yaml"
  118. delete_after: true
  119. # Cron Job - v5.x
  120. - when: openshift_logging_es5_techpreview | bool
  121. block:
  122. # Keep the old DC around
  123. - name: Scale the old DC to 0
  124. oc_scale:
  125. name: "{{ curator_name }}"
  126. namespace: "{{ openshift_logging_namespace }}"
  127. kind: dc
  128. replicas: 0
  129. when: is_upgrade | bool
  130. - name: Generate Curator cronjob
  131. template:
  132. src: "{{ __base_file_dir }}/curator-cj.j2"
  133. dest: "{{ tempdir }}/templates/curator-cj.yaml"
  134. vars:
  135. component: "{{ curator_component }}"
  136. logging_component: curator
  137. deploy_name: "{{ curator_name }}"
  138. image: "{{openshift_logging_curator_image_prefix}}logging-curator:{{openshift_logging_curator_image_version}}"
  139. es_host: "{{ openshift_logging_curator_es_host }}"
  140. es_port: "{{ openshift_logging_curator_es_port }}"
  141. curator_cpu_limit: "{{ openshift_logging_curator_cpu_limit }}"
  142. curator_cpu_request: "{{ openshift_logging_curator_cpu_request | min_cpu(openshift_logging_curator_cpu_limit | default(none)) }}"
  143. curator_memory_limit: "{{ openshift_logging_curator_memory_limit }}"
  144. curator_node_selector: "{{openshift_logging_curator_nodeselector | default({})}}"
  145. cron_job_schedule: "{{ openshift_logging_curator_run_minute | default(0) }} {{ openshift_logging_curator_run_hour | default(0) }} * * *"
  146. check_mode: no
  147. changed_when: no
  148. # Copy config files
  149. - copy:
  150. src: "{{ __base_file_dir }}/{{ item }}"
  151. dest: "{{ tempdir }}/{{ item }}"
  152. with_items:
  153. - "actions.yaml"
  154. - "config.yaml"
  155. - "curator.yml"
  156. # Patch existing configuration, if present
  157. - import_role:
  158. name: openshift_logging
  159. tasks_from: patch_configmap_files.yaml
  160. vars:
  161. configmap_name: "logging-curator"
  162. configmap_namespace: "logging"
  163. configmap_file_names:
  164. - current_file: "actions.yaml"
  165. new_file: "{{ tempdir }}/actions.yaml"
  166. - current_file: "curator5.yaml"
  167. new_file: "{{ tempdir }}/config.yaml"
  168. - current_file: "config.yaml"
  169. new_file: "{{ tempdir }}/curator.yml"
  170. # Create cronjob
  171. - name: Set Curator Cronjob
  172. oc_obj:
  173. state: present
  174. name: "{{ curator_name }}"
  175. namespace: "{{ openshift_logging_namespace }}"
  176. kind: cronjob
  177. files:
  178. - "{{ tempdir }}/templates/curator-cj.yaml"
  179. delete_after: true
  180. # Create config map
  181. - name: Set Curator configmap
  182. oc_configmap:
  183. state: present
  184. name: "logging-curator"
  185. namespace: "{{ openshift_logging_namespace }}"
  186. from_file:
  187. actions.yaml: "{{ tempdir }}/actions.yaml"
  188. curator5.yaml: "{{ tempdir }}/config.yaml"
  189. config.yaml: "{{ tempdir }}/curator.yml"
  190. - name: Delete temp directory
  191. file:
  192. name: "{{ tempdir }}"
  193. state: absent
  194. changed_when: False