generate_configmaps.yaml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. ---
  2. - block:
  3. - fail:
  4. msg: "The openshift_logging_es_log_appenders '{{openshift_logging_es_log_appenders}}' has an unrecognized option and only supports the following as a list: {{es_log_appenders | join(', ')}}"
  5. when:
  6. - es_logging_contents is undefined
  7. - "{{ openshift_logging_es_log_appenders | list | difference(es_log_appenders) | length != 0 }}"
  8. changed_when: no
  9. - template:
  10. src: elasticsearch-logging.yml.j2
  11. dest: "{{mktemp.stdout}}/elasticsearch-logging.yml"
  12. vars:
  13. root_logger: "{{openshift_logging_es_log_appenders | join(', ')}}"
  14. when: es_logging_contents is undefined
  15. changed_when: no
  16. check_mode: no
  17. - local_action: >
  18. template src=elasticsearch.yml.j2
  19. dest="{{local_tmp.stdout}}/elasticsearch-gen-template.yml"
  20. vars:
  21. - allow_cluster_reader: "{{openshift_logging_es_ops_allow_cluster_reader | lower | default('false')}}"
  22. - es_number_of_shards: "{{ openshift_logging_es_number_of_shards | default(1) }}"
  23. - es_number_of_replicas: "{{ openshift_logging_es_number_of_replicas | default(0) }}"
  24. when: es_config_contents is undefined
  25. changed_when: no
  26. - copy:
  27. content: "{{ config_source | combine(override_config,recursive=True) | to_nice_yaml }}"
  28. dest: "{{mktemp.stdout}}/elasticsearch.yml"
  29. vars:
  30. config_source: "{{lookup('file','{{local_tmp.stdout}}/elasticsearch-gen-template.yml') | from_yaml }}"
  31. override_config: "{{openshift_logging_es_config | from_yaml}}"
  32. when: es_logging_contents is undefined
  33. changed_when: no
  34. - copy:
  35. content: "{{es_logging_contents}}"
  36. dest: "{{mktemp.stdout}}/elasticsearch-logging.yml"
  37. when: es_logging_contents is defined
  38. changed_when: no
  39. - copy:
  40. content: "{{es_config_contents}}"
  41. dest: "{{mktemp.stdout}}/elasticsearch.yml"
  42. when: es_config_contents is defined
  43. changed_when: no
  44. - command: >
  45. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create configmap logging-elasticsearch
  46. --from-file=logging.yml={{mktemp.stdout}}/elasticsearch-logging.yml --from-file=elasticsearch.yml={{mktemp.stdout}}/elasticsearch.yml -o yaml --dry-run
  47. register: es_configmap
  48. changed_when: no
  49. - copy:
  50. content: "{{es_configmap.stdout}}"
  51. dest: "{{mktemp.stdout}}/templates/logging-elasticsearch-configmap.yaml"
  52. when: es_configmap.stdout is defined
  53. changed_when: no
  54. check_mode: no
  55. - block:
  56. - copy:
  57. src: curator.yml
  58. dest: "{{mktemp.stdout}}/curator.yml"
  59. when: curator_config_contents is undefined
  60. changed_when: no
  61. - copy:
  62. content: "{{curator_config_contents}}"
  63. dest: "{{mktemp.stdout}}/curator.yml"
  64. when: curator_config_contents is defined
  65. changed_when: no
  66. - command: >
  67. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create configmap logging-curator
  68. --from-file=config.yaml={{mktemp.stdout}}/curator.yml -o yaml --dry-run
  69. register: curator_configmap
  70. changed_when: no
  71. - copy:
  72. content: "{{curator_configmap.stdout}}"
  73. dest: "{{mktemp.stdout}}/templates/logging-curator-configmap.yaml"
  74. when: curator_configmap.stdout is defined
  75. changed_when: no
  76. check_mode: no
  77. - block:
  78. - copy:
  79. src: fluent.conf
  80. dest: "{{mktemp.stdout}}/fluent.conf"
  81. when: fluentd_config_contents is undefined
  82. changed_when: no
  83. - copy:
  84. src: fluentd-throttle-config.yaml
  85. dest: "{{mktemp.stdout}}/fluentd-throttle-config.yaml"
  86. when: fluentd_throttle_contents is undefined
  87. changed_when: no
  88. - copy:
  89. src: secure-forward.conf
  90. dest: "{{mktemp.stdout}}/secure-forward.conf"
  91. when: fluentd_securefoward_contents is undefined
  92. changed_when: no
  93. - copy:
  94. content: "{{fluentd_config_contents}}"
  95. dest: "{{mktemp.stdout}}/fluent.conf"
  96. when: fluentd_config_contents is defined
  97. changed_when: no
  98. - copy:
  99. content: "{{fluentd_throttle_contents}}"
  100. dest: "{{mktemp.stdout}}/fluentd-throttle-config.yaml"
  101. when: fluentd_throttle_contents is defined
  102. changed_when: no
  103. - copy:
  104. content: "{{fluentd_secureforward_contents}}"
  105. dest: "{{mktemp.stdout}}/secure-forward.conf"
  106. when: fluentd_secureforward_contents is defined
  107. changed_when: no
  108. - command: >
  109. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create configmap logging-fluentd
  110. --from-file=fluent.conf={{mktemp.stdout}}/fluent.conf --from-file=throttle-config.yaml={{mktemp.stdout}}/fluentd-throttle-config.yaml
  111. --from-file=secure-forward.conf={{mktemp.stdout}}/secure-forward.conf -o yaml --dry-run
  112. register: fluentd_configmap
  113. changed_when: no
  114. - copy:
  115. content: "{{fluentd_configmap.stdout}}"
  116. dest: "{{mktemp.stdout}}/templates/logging-fluentd-configmap.yaml"
  117. when: fluentd_configmap.stdout is defined
  118. changed_when: no
  119. check_mode: no
  120. - block:
  121. - copy:
  122. src: fluent.conf
  123. dest: "{{mktemp.stdout}}/fluent-mux.conf"
  124. when: fluentd_mux_config_contents is undefined
  125. changed_when: no
  126. - copy:
  127. src: secure-forward.conf
  128. dest: "{{mktemp.stdout}}/secure-forward-mux.conf"
  129. when: fluentd_mux_securefoward_contents is undefined
  130. changed_when: no
  131. - copy:
  132. content: "{{fluentd_mux_config_contents}}"
  133. dest: "{{mktemp.stdout}}/fluent-mux.conf"
  134. when: fluentd_mux_config_contents is defined
  135. changed_when: no
  136. - copy:
  137. content: "{{fluentd_mux_secureforward_contents}}"
  138. dest: "{{mktemp.stdout}}/secure-forward-mux.conf"
  139. when: fluentd_mux_secureforward_contents is defined
  140. changed_when: no
  141. - command: >
  142. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create configmap logging-mux
  143. --from-file=fluent.conf={{mktemp.stdout}}/fluent-mux.conf
  144. --from-file=secure-forward.conf={{mktemp.stdout}}/secure-forward-mux.conf -o yaml --dry-run
  145. register: mux_configmap
  146. changed_when: no
  147. - copy:
  148. content: "{{mux_configmap.stdout}}"
  149. dest: "{{mktemp.stdout}}/templates/logging-mux-configmap.yaml"
  150. when: mux_configmap.stdout is defined
  151. changed_when: no
  152. check_mode: no
  153. when: openshift_logging_use_mux