mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Add a secret storing a elasticsearch keystore to be mounted (#7477)
Signed-off-by: Ken Hahn <yokhahn@gmail.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
name: elasticsearch
|
||||
home: https://www.elastic.co/products/elasticsearch
|
||||
version: 1.5.0
|
||||
version: 1.6.0
|
||||
appVersion: 6.4.0
|
||||
description: Flexible and powerful open source, distributed real-time search and analytics
|
||||
engine.
|
||||
|
||||
@@ -70,6 +70,7 @@ The following table lists the configurable parameters of the elasticsearch chart
|
||||
| `cluster.kubernetesDomain` | Kubernetes cluster domain name | `cluster.local` |
|
||||
| `cluster.xpackEnable` | Writes the X-Pack configuration options to the configuration file | `false` |
|
||||
| `cluster.config` | Additional cluster config appended | `{}` |
|
||||
| `cluster.keystoreSecret` | Name of secret holding secure config options in an es keystore | `nil` |
|
||||
| `cluster.env` | Cluster environment variables | `{}` |
|
||||
| `client.name` | Client component name | `client` |
|
||||
| `client.replicas` | Client node replicas (deployment) | `2` |
|
||||
|
||||
@@ -122,6 +122,12 @@ spec:
|
||||
name: config
|
||||
subPath: log4j2.properties
|
||||
{{- end }}
|
||||
{{- if .Values.cluster.keystoreSecret }}
|
||||
- name: keystore
|
||||
mountPath: "/usr/share/elasticsearch/config/elasticsearch.keystore"
|
||||
subPath: elasticsearch.keystore
|
||||
readOnly: true
|
||||
{{- end }}
|
||||
{{- if .Values.image.pullSecrets }}
|
||||
imagePullSecrets:
|
||||
{{- range $pullSecret := .Values.image.pullSecrets }}
|
||||
@@ -132,3 +138,8 @@ spec:
|
||||
- name: config
|
||||
configMap:
|
||||
name: {{ template "elasticsearch.fullname" . }}
|
||||
{{- if .Values.cluster.keystoreSecret }}
|
||||
- name: keystore
|
||||
secret:
|
||||
secretName: {{ .Values.cluster.keystoreSecret }}
|
||||
{{- end }}
|
||||
|
||||
@@ -135,6 +135,12 @@ spec:
|
||||
- name: config
|
||||
mountPath: /post-start-hook.sh
|
||||
subPath: post-start-hook.sh
|
||||
{{- if .Values.cluster.keystoreSecret }}
|
||||
- name: keystore
|
||||
mountPath: "/usr/share/elasticsearch/config/elasticsearch.keystore"
|
||||
subPath: elasticsearch.keystore
|
||||
readOnly: true
|
||||
{{- end }}
|
||||
lifecycle:
|
||||
preStop:
|
||||
exec:
|
||||
@@ -153,6 +159,11 @@ spec:
|
||||
- name: config
|
||||
configMap:
|
||||
name: {{ template "elasticsearch.fullname" . }}
|
||||
{{- if .Values.cluster.keystoreSecret }}
|
||||
- name: keystore
|
||||
secret:
|
||||
secretName: {{ .Values.cluster.keystoreSecret }}
|
||||
{{- end }}
|
||||
{{- if not .Values.data.persistence.enabled }}
|
||||
- name: data
|
||||
emptyDir: {}
|
||||
|
||||
@@ -133,6 +133,12 @@ spec:
|
||||
name: config
|
||||
subPath: log4j2.properties
|
||||
{{- end }}
|
||||
{{- if .Values.cluster.keystoreSecret }}
|
||||
- name: keystore
|
||||
mountPath: "/usr/share/elasticsearch/config/elasticsearch.keystore"
|
||||
subPath: elasticsearch.keystore
|
||||
readOnly: true
|
||||
{{- end }}
|
||||
{{- if .Values.image.pullSecrets }}
|
||||
imagePullSecrets:
|
||||
{{- range $pullSecret := .Values.image.pullSecrets }}
|
||||
@@ -143,6 +149,11 @@ spec:
|
||||
- name: config
|
||||
configMap:
|
||||
name: {{ template "elasticsearch.fullname" . }}
|
||||
{{- if .Values.cluster.keystoreSecret }}
|
||||
- name: keystore
|
||||
secret:
|
||||
secretName: {{ .Values.cluster.keystoreSecret }}
|
||||
{{- end }}
|
||||
{{- if not .Values.master.persistence.enabled }}
|
||||
- name: data
|
||||
emptyDir: {}
|
||||
|
||||
@@ -17,6 +17,9 @@ cluster:
|
||||
# If you want X-Pack installed, switch to an image that includes it, enable this option and toggle the features you want
|
||||
# enabled in the environment variables outlined in the README
|
||||
xpackEnable: false
|
||||
# Some settings must be placed in a keystore, so they need to be mounted in from a secret.
|
||||
# Use this setting to specify the name of the secret
|
||||
# keystoreSecret: eskeystore
|
||||
config:
|
||||
env:
|
||||
# IMPORTANT: https://www.elastic.co/guide/en/elasticsearch/reference/current/important-settings.html#minimum_master_nodes
|
||||
|
||||
Reference in New Issue
Block a user