main.yml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. ---
  2. openshift_logging_use_ops: False
  3. openshift_logging_master_url: "https://kubernetes.default.svc.{{ openshift.common.dns_domain }}"
  4. openshift_logging_master_public_url: "{{ 'https://' + openshift.common.public_hostname + ':' ~ (openshift_master_api_port | default('8443', true)) }}"
  5. openshift_logging_namespace: logging
  6. openshift_logging_nodeselector: null
  7. openshift_logging_labels: {}
  8. openshift_logging_label_key: ""
  9. openshift_logging_label_value: ""
  10. openshift_logging_install_logging: False
  11. openshift_logging_purge_logging: False
  12. openshift_logging_image_pull_secret: ""
  13. openshift_logging_curator_default_days: 30
  14. openshift_logging_curator_run_hour: 0
  15. openshift_logging_curator_run_minute: 0
  16. openshift_logging_curator_run_timezone: UTC
  17. openshift_logging_curator_script_log_level: INFO
  18. openshift_logging_curator_log_level: ERROR
  19. openshift_logging_curator_cpu_limit: 100m
  20. openshift_logging_curator_memory_limit: null
  21. openshift_logging_curator_nodeselector: {}
  22. openshift_logging_curator_ops_cpu_limit: 100m
  23. openshift_logging_curator_ops_memory_limit: null
  24. openshift_logging_curator_ops_nodeselector: {}
  25. openshift_logging_kibana_hostname: "{{ 'kibana.' ~ (openshift_master_default_subdomain | default('router.default.svc.cluster.local', true)) }}"
  26. openshift_logging_kibana_cpu_limit: null
  27. openshift_logging_kibana_memory_limit: 736Mi
  28. openshift_logging_kibana_proxy_debug: false
  29. openshift_logging_kibana_proxy_cpu_limit: null
  30. openshift_logging_kibana_proxy_memory_limit: 256Mi
  31. openshift_logging_kibana_replica_count: 1
  32. openshift_logging_kibana_edge_term_policy: Redirect
  33. openshift_logging_kibana_nodeselector: {}
  34. openshift_logging_kibana_ops_nodeselector: {}
  35. #The absolute path on the control node to the cert file to use
  36. #for the public facing kibana certs
  37. openshift_logging_kibana_cert: ""
  38. #The absolute path on the control node to the key file to use
  39. #for the public facing kibana certs
  40. openshift_logging_kibana_key: ""
  41. #The absolute path on the control node to the CA file to use
  42. #for the public facing kibana certs
  43. openshift_logging_kibana_ca: ""
  44. openshift_logging_kibana_ops_hostname: "{{ 'kibana-ops.' ~ (openshift_master_default_subdomain | default('router.default.svc.cluster.local', true)) }}"
  45. openshift_logging_kibana_ops_cpu_limit: null
  46. openshift_logging_kibana_ops_memory_limit: 736Mi
  47. openshift_logging_kibana_ops_proxy_debug: false
  48. openshift_logging_kibana_ops_proxy_cpu_limit: null
  49. openshift_logging_kibana_ops_proxy_memory_limit: 256Mi
  50. openshift_logging_kibana_ops_replica_count: 1
  51. #The absolute path on the control node to the cert file to use
  52. #for the public facing ops kibana certs
  53. openshift_logging_kibana_ops_cert: ""
  54. #The absolute path on the control node to the key file to use
  55. #for the public facing ops kibana certs
  56. openshift_logging_kibana_ops_key: ""
  57. #The absolute path on the control node to the CA file to use
  58. #for the public facing ops kibana certs
  59. openshift_logging_kibana_ops_ca: ""
  60. openshift_logging_fluentd_nodeselector: {'logging-infra-fluentd': 'true'}
  61. openshift_logging_fluentd_cpu_limit: 100m
  62. openshift_logging_fluentd_memory_limit: 512Mi
  63. openshift_logging_fluentd_journal_source: ""
  64. openshift_logging_fluentd_journal_read_from_head: ""
  65. openshift_logging_fluentd_hosts: ['--all']
  66. openshift_logging_fluentd_buffer_queue_limit: 1024
  67. openshift_logging_fluentd_buffer_size_limit: 1m
  68. openshift_logging_es_host: logging-es
  69. openshift_logging_es_port: 9200
  70. openshift_logging_es_ca: /etc/fluent/keys/ca
  71. openshift_logging_es_client_cert: /etc/fluent/keys/cert
  72. openshift_logging_es_client_key: /etc/fluent/keys/key
  73. openshift_logging_es_cluster_size: 1
  74. openshift_logging_es_cpu_limit: 1000m
  75. # the logging appenders for the root loggers to write ES logs. Valid values: 'file', 'console'
  76. openshift_logging_es_log_appenders: ['file']
  77. openshift_logging_es_memory_limit: "8Gi"
  78. openshift_logging_es_pv_selector: "{{ openshift_logging_storage_labels | default('') }}"
  79. openshift_logging_es_pvc_dynamic: "{{ openshift_logging_elasticsearch_pvc_dynamic | default(False) }}"
  80. openshift_logging_es_pvc_size: "{{ openshift_logging_elasticsearch_pvc_size | default('') }}"
  81. openshift_logging_es_pvc_prefix: "{{ openshift_logging_elasticsearch_pvc_prefix | default('logging-es') }}"
  82. openshift_logging_es_recover_after_time: 5m
  83. openshift_logging_es_storage_group: "65534"
  84. openshift_logging_es_nodeselector: {}
  85. # openshift_logging_es_config is a hash to be merged into the defaults for the elasticsearch.yaml
  86. openshift_logging_es_config: {}
  87. # for exposing es to external (outside of the cluster) clients
  88. openshift_logging_es_allow_external: False
  89. openshift_logging_es_hostname: "{{ 'es.' ~ (openshift_master_default_subdomain | default('router.default.svc.cluster.local', true)) }}"
  90. #The absolute path on the control node to the cert file to use
  91. #for the public facing es certs
  92. openshift_logging_es_cert: ""
  93. #The absolute path on the control node to the key file to use
  94. #for the public facing es certs
  95. openshift_logging_es_key: ""
  96. #The absolute path on the control node to the CA file to use
  97. #for the public facing es certs
  98. openshift_logging_es_ca_ext: ""
  99. # allow cluster-admin or cluster-reader to view operations index
  100. openshift_logging_es_ops_allow_cluster_reader: False
  101. openshift_logging_es_ops_host: logging-es-ops
  102. openshift_logging_es_ops_port: 9200
  103. openshift_logging_es_ops_ca: /etc/fluent/keys/ca
  104. openshift_logging_es_ops_client_cert: /etc/fluent/keys/cert
  105. openshift_logging_es_ops_client_key: /etc/fluent/keys/key
  106. openshift_logging_es_ops_cluster_size: "{{ openshift_logging_elasticsearch_ops_cluster_size | default(1) }}"
  107. openshift_logging_es_ops_cpu_limit: 1000m
  108. openshift_logging_es_ops_memory_limit: "8Gi"
  109. openshift_logging_es_ops_pv_selector: "{{ openshift_loggingops_storage_labels | default('') }}"
  110. openshift_logging_es_ops_pvc_dynamic: "{{ openshift_logging_elasticsearch_ops_pvc_dynamic | default(False) }}"
  111. openshift_logging_es_ops_pvc_size: "{{ openshift_logging_elasticsearch_ops_pvc_size | default('') }}"
  112. openshift_logging_es_ops_pvc_prefix: "{{ openshift_logging_elasticsearch_ops_pvc_prefix | default('logging-es-ops') }}"
  113. openshift_logging_es_ops_recover_after_time: 5m
  114. openshift_logging_es_ops_storage_group: "65534"
  115. openshift_logging_es_ops_nodeselector: {}
  116. # for exposing es-ops to external (outside of the cluster) clients
  117. openshift_logging_es_ops_allow_external: False
  118. openshift_logging_es_ops_hostname: "{{ 'es-ops.' ~ (openshift_master_default_subdomain | default('router.default.svc.cluster.local', true)) }}"
  119. #The absolute path on the control node to the cert file to use
  120. #for the public facing es-ops certs
  121. openshift_logging_es_ops_cert: ""
  122. #The absolute path on the control node to the key file to use
  123. #for the public facing es-ops certs
  124. openshift_logging_es_ops_key: ""
  125. #The absolute path on the control node to the CA file to use
  126. #for the public facing es-ops certs
  127. openshift_logging_es_ops_ca_ext: ""
  128. # storage related defaults
  129. openshift_logging_storage_access_modes: ['ReadWriteOnce']
  130. # mux - secure_forward listener service
  131. openshift_logging_mux_allow_external: False
  132. openshift_logging_use_mux: "{{ openshift_logging_mux_allow_external | default(False) }}"
  133. openshift_logging_mux_hostname: "{{ 'mux.' ~ (openshift_master_default_subdomain | default('router.default.svc.cluster.local', true)) }}"
  134. openshift_logging_mux_port: 24284
  135. openshift_logging_mux_cpu_limit: 500m
  136. openshift_logging_mux_memory_limit: 1Gi
  137. # the namespace to use for undefined projects should come first, followed by any
  138. # additional namespaces to create by default - users will typically not need to set this
  139. openshift_logging_mux_default_namespaces: ["mux-undefined"]
  140. # extra namespaces to create for mux clients - users will need to set this
  141. openshift_logging_mux_namespaces: []
  142. # following can be uncommented to provide values for configmaps -- take care when providing file contents as it may cause your cluster to not operate correctly
  143. #es_logging_contents:
  144. #es_config_contents:
  145. #curator_config_contents:
  146. #fluentd_config_contents:
  147. #fluentd_throttle_contents:
  148. #fluentd_secureforward_contents:
  149. #fluentd_mux_config_contents:
  150. #fluentd_mux_secureforward_contents: