main.yaml 6.9 KB

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