elasticsearch.yml.j2 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. master: true
  15. data: true
  16. network:
  17. host: 0.0.0.0
  18. cloud:
  19. kubernetes:
  20. service: ${SERVICE_DNS}
  21. namespace: ${NAMESPACE}
  22. discovery:
  23. type: kubernetes
  24. zen.ping.multicast.enabled: false
  25. zen.minimum_master_nodes: ${NODE_QUORUM}
  26. gateway:
  27. recover_after_nodes: ${NODE_QUORUM}
  28. expected_nodes: ${RECOVER_EXPECTED_NODES}
  29. recover_after_time: ${RECOVER_AFTER_TIME}
  30. io.fabric8.elasticsearch.authentication.users: ["system.logging.kibana", "system.logging.fluentd", "system.logging.curator", "system.admin"]
  31. io.fabric8.elasticsearch.kibana.mapping.app: /usr/share/elasticsearch/index_patterns/com.redhat.viaq-openshift.index-pattern.json
  32. io.fabric8.elasticsearch.kibana.mapping.ops: /usr/share/elasticsearch/index_patterns/com.redhat.viaq-openshift.index-pattern.json
  33. openshift.config:
  34. use_common_data_model: true
  35. project_index_prefix: "project"
  36. time_field_name: "@timestamp"
  37. openshift.searchguard:
  38. keystore.path: /etc/elasticsearch/secret/admin.jks
  39. truststore.path: /etc/elasticsearch/secret/searchguard.truststore
  40. openshift.operations.allow_cluster_reader: {{allow_cluster_reader | default (false)}}
  41. path:
  42. data: /elasticsearch/persistent/${CLUSTER_NAME}/data
  43. logs: /elasticsearch/${CLUSTER_NAME}/logs
  44. work: /elasticsearch/${CLUSTER_NAME}/work
  45. scripts: /elasticsearch/${CLUSTER_NAME}/scripts
  46. searchguard:
  47. authcz.admin_dn:
  48. - CN=system.admin,OU=OpenShift,O=Logging
  49. config_index_name: ".searchguard.${HOSTNAME}"
  50. ssl:
  51. transport:
  52. enabled: true
  53. enforce_hostname_verification: false
  54. keystore_type: JKS
  55. keystore_filepath: /etc/elasticsearch/secret/searchguard.key
  56. keystore_password: kspass
  57. truststore_type: JKS
  58. truststore_filepath: /etc/elasticsearch/secret/searchguard.truststore
  59. truststore_password: tspass
  60. http:
  61. enabled: true
  62. keystore_type: JKS
  63. keystore_filepath: /etc/elasticsearch/secret/key
  64. keystore_password: kspass
  65. clientauth_mode: OPTIONAL
  66. truststore_type: JKS
  67. truststore_filepath: /etc/elasticsearch/secret/truststore
  68. truststore_password: tspass