diff --git a/bitnami/elasticsearch/Chart.yaml b/bitnami/elasticsearch/Chart.yaml index 7c3d64d4c92de1..9f7dc3a4cf0c35 100644 --- a/bitnami/elasticsearch/Chart.yaml +++ b/bitnami/elasticsearch/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: elasticsearch -version: 10.3.6 +version: 11.0.0 appVersion: 7.5.2 description: A highly scalable open-source full-text search and analytics engine keywords: diff --git a/bitnami/elasticsearch/README.md b/bitnami/elasticsearch/README.md index 8a4470019be2bc..09c8a50791ab88 100644 --- a/bitnami/elasticsearch/README.md +++ b/bitnami/elasticsearch/README.md @@ -477,6 +477,17 @@ You can enable this initContainer by setting `volumePermissions.enabled` to `tru ## Notable changes +### 11.0.0 + +Elasticsearch master pods are now deployed in parallel in order to bootstrap de cluster and be discovered. + +The field `podManagementPolicy` can't be updated in a StatefulSet, so you need to destroy it before you upgrade the chart to this version. + +```console +$ kubectl delete statefulset elasticsearch-master +$ helm upgrade bitnami/elasticsearch +``` + ### 10.0.0 In this version, Kibana was added as dependant chart. More info about how to enable and work with this bundled Kibana in the ["Enable bundled Kibana"](#enable-bundled-kibana) section. diff --git a/bitnami/elasticsearch/templates/master-statefulset.yaml b/bitnami/elasticsearch/templates/master-statefulset.yaml index 953e65e16fea83..974261f3fb6358 100644 --- a/bitnami/elasticsearch/templates/master-statefulset.yaml +++ b/bitnami/elasticsearch/templates/master-statefulset.yaml @@ -14,6 +14,7 @@ spec: matchLabels: {{- include "elasticsearch.matchLabels" . | nindent 6 }} role: master serviceName: {{ template "elasticsearch.master.fullname" . }} + podManagementPolicy: Parallel replicas: {{ .Values.master.replicas }} template: metadata: