You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`networkHost`| Value for the [network.host Elasticsearch setting](https://www.elastic.co/guide/en/elasticsearch/reference/current/network.host.html)|`0.0.0.0`|
81
81
|`volumeClaimTemplate`| Configuration for the [volumeClaimTemplate for statefulsets](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#stable-storage). You will want to adjust the storage (default `30Gi`) and the `storageClassName` if you are using a different storage class |`accessModes: [ "ReadWriteOnce" ]`<br>`resources.requests.storage: 30Gi`|
82
82
|`persistence.annotations`| Additional persistence annotations for the `volumeClaimTemplate`|`{}`|
83
+
|`persistence.enabled`| Enables a persistent volume for Elasticsearch data. Can be disabled for nodes that only have [roles](https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-node.html) which don't require persistent data. |`true`|
83
84
|`antiAffinityTopologyKey`| The [anti-affinity topology key](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity). By default this will prevent multiple Elasticsearch nodes from running on the same Kubernetes node |`kubernetes.io/hostname`|
84
85
|`antiAffinity`| Setting this to hard enforces the [anti-affinity rules](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity). If it is set to soft it will be done "best effort". Other values will be ignored. |`hard`|
85
86
|`nodeAffinity`| Value for the [node affinity settings](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#node-affinity-beta-feature)|`{}`|
0 commit comments