elasticsearch.yml.j2 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. cluster:
  2. name: ${CLUSTER_NAME}
  3. script:
  4. inline: on
  5. indexed: on
  6. index:
  7. number_of_shards: {{ es_number_of_shards | default ('1') }}
  8. number_of_replicas: {{ es_number_of_replicas | default ('0') }}
  9. unassigned.node_left.delayed_timeout: 2m
  10. translog:
  11. flush_threshold_size: 256mb
  12. flush_threshold_period: 5m
  13. node:
  14. name: ${DC_NAME}
  15. master: ${IS_MASTER}
  16. data: ${HAS_DATA}
  17. max_local_storage_nodes: 1
  18. network:
  19. host: 0.0.0.0
  20. cloud:
  21. kubernetes:
  22. pod_label: ${POD_LABEL}
  23. pod_port: 9300
  24. namespace: ${NAMESPACE}
  25. discovery:
  26. type: kubernetes
  27. zen.ping.multicast.enabled: false
  28. zen.minimum_master_nodes: ${NODE_QUORUM}
  29. gateway:
  30. recover_after_nodes: ${NODE_QUORUM}
  31. expected_nodes: ${RECOVER_EXPECTED_NODES}
  32. recover_after_time: ${RECOVER_AFTER_TIME}
  33. io.fabric8.elasticsearch.authentication.users: ["system.logging.kibana", "system.logging.fluentd", "system.logging.curator", "system.admin"]
  34. io.fabric8.elasticsearch.kibana.mapping.app: /usr/share/elasticsearch/index_patterns/com.redhat.viaq-openshift.index-pattern.json
  35. io.fabric8.elasticsearch.kibana.mapping.ops: /usr/share/elasticsearch/index_patterns/com.redhat.viaq-openshift.index-pattern.json
  36. io.fabric8.elasticsearch.kibana.mapping.empty: /usr/share/elasticsearch/index_patterns/com.redhat.viaq-openshift.index-pattern.json
  37. openshift.config:
  38. use_common_data_model: true
  39. project_index_prefix: "project"
  40. time_field_name: "@timestamp"
  41. openshift.searchguard:
  42. keystore.path: /etc/elasticsearch/secret/admin.jks
  43. truststore.path: /etc/elasticsearch/secret/searchguard.truststore
  44. openshift.operations.allow_cluster_reader: {{allow_cluster_reader | default (false)}}
  45. openshift.kibana.index.mode: {{es_kibana_index_mode | default('unique')}}
  46. path:
  47. data: /elasticsearch/persistent/${CLUSTER_NAME}/data
  48. logs: /elasticsearch/${CLUSTER_NAME}/logs
  49. work: /elasticsearch/${CLUSTER_NAME}/work
  50. scripts: /elasticsearch/${CLUSTER_NAME}/scripts
  51. searchguard:
  52. authcz.admin_dn:
  53. - CN=system.admin,OU=OpenShift,O=Logging
  54. config_index_name: ".searchguard.${DC_NAME}"
  55. ssl:
  56. transport:
  57. enabled: true
  58. enforce_hostname_verification: false
  59. keystore_type: JKS
  60. keystore_filepath: /etc/elasticsearch/secret/searchguard.key
  61. keystore_password: kspass
  62. truststore_type: JKS
  63. truststore_filepath: /etc/elasticsearch/secret/searchguard.truststore
  64. truststore_password: tspass
  65. http:
  66. enabled: true
  67. keystore_type: JKS
  68. keystore_filepath: /etc/elasticsearch/secret/key
  69. keystore_password: kspass
  70. clientauth_mode: OPTIONAL
  71. truststore_type: JKS
  72. truststore_filepath: /etc/elasticsearch/secret/truststore
  73. truststore_password: tspass