generate_configmaps.yaml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. ---
  2. - block:
  3. - copy:
  4. src: elasticsearch-logging.yml
  5. dest: "{{mktemp.stdout}}/elasticsearch-logging.yml"
  6. when: es_logging_contents is undefined
  7. changed_when: no
  8. - template:
  9. src: elasticsearch.yml.j2
  10. dest: "{{mktemp.stdout}}/elasticsearch.yml"
  11. vars:
  12. - allow_cluster_reader: "{{openshift_logging_es_ops_allow_cluster_reader | lower | default('false')}}"
  13. when: es_config_contents is undefined
  14. changed_when: no
  15. - copy:
  16. content: "{{es_logging_contents}}"
  17. dest: "{{mktemp.stdout}}/elasticsearch-logging.yml"
  18. when: es_logging_contents is defined
  19. changed_when: no
  20. - copy:
  21. content: "{{es_config_contents}}"
  22. dest: "{{mktemp.stdout}}/elasticsearch.yml"
  23. when: es_config_contents is defined
  24. changed_when: no
  25. - command: >
  26. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create configmap logging-elasticsearch
  27. --from-file=logging.yml={{mktemp.stdout}}/elasticsearch-logging.yml --from-file=elasticsearch.yml={{mktemp.stdout}}/elasticsearch.yml -o yaml --dry-run
  28. register: es_configmap
  29. changed_when: no
  30. - copy:
  31. content: "{{es_configmap.stdout}}"
  32. dest: "{{mktemp.stdout}}/templates/logging-elasticsearch-configmap.yaml"
  33. when: es_configmap.stdout is defined
  34. changed_when: no
  35. check_mode: no
  36. - block:
  37. - copy:
  38. src: curator.yml
  39. dest: "{{mktemp.stdout}}/curator.yml"
  40. when: curator_config_contents is undefined
  41. changed_when: no
  42. - copy:
  43. content: "{{curator_config_contents}}"
  44. dest: "{{mktemp.stdout}}/curator.yml"
  45. when: curator_config_contents is defined
  46. changed_when: no
  47. - command: >
  48. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create configmap logging-curator
  49. --from-file=config.yaml={{mktemp.stdout}}/curator.yml -o yaml --dry-run
  50. register: curator_configmap
  51. changed_when: no
  52. - copy:
  53. content: "{{curator_configmap.stdout}}"
  54. dest: "{{mktemp.stdout}}/templates/logging-curator-configmap.yaml"
  55. when: curator_configmap.stdout is defined
  56. changed_when: no
  57. check_mode: no
  58. - block:
  59. - copy:
  60. src: fluent.conf
  61. dest: "{{mktemp.stdout}}/fluent.conf"
  62. when: fluentd_config_contents is undefined
  63. changed_when: no
  64. - copy:
  65. src: fluentd-throttle-config.yaml
  66. dest: "{{mktemp.stdout}}/fluentd-throttle-config.yaml"
  67. when: fluentd_throttle_contents is undefined
  68. changed_when: no
  69. - copy:
  70. src: secure-forward.conf
  71. dest: "{{mktemp.stdout}}/secure-forward.conf"
  72. when: fluentd_securefoward_contents is undefined
  73. changed_when: no
  74. - copy:
  75. content: "{{fluentd_config_contents}}"
  76. dest: "{{mktemp.stdout}}/fluent.conf"
  77. when: fluentd_config_contents is defined
  78. changed_when: no
  79. - copy:
  80. content: "{{fluentd_throttle_contents}}"
  81. dest: "{{mktemp.stdout}}/fluentd-throttle-config.yaml"
  82. when: fluentd_throttle_contents is defined
  83. changed_when: no
  84. - copy:
  85. content: "{{fluentd_secureforward_contents}}"
  86. dest: "{{mktemp.stdout}}/secure-forward.conf"
  87. when: fluentd_secureforward_contents is defined
  88. changed_when: no
  89. - command: >
  90. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create configmap logging-fluentd
  91. --from-file=fluent.conf={{mktemp.stdout}}/fluent.conf --from-file=throttle-config.yaml={{mktemp.stdout}}/fluentd-throttle-config.yaml
  92. --from-file=secure-forward.conf={{mktemp.stdout}}/secure-forward.conf -o yaml --dry-run
  93. register: fluentd_configmap
  94. changed_when: no
  95. - copy:
  96. content: "{{fluentd_configmap.stdout}}"
  97. dest: "{{mktemp.stdout}}/templates/logging-fluentd-configmap.yaml"
  98. when: fluentd_configmap.stdout is defined
  99. changed_when: no
  100. check_mode: no