diff --git a/charts/opensearch/CHANGELOG.md b/charts/opensearch/CHANGELOG.md index eaa159dd..09d64b09 100644 --- a/charts/opensearch/CHANGELOG.md +++ b/charts/opensearch/CHANGELOG.md @@ -13,6 +13,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Security --- +## [2.11.1] +### Added +### Changed +### Deprecated +### Removed +### Fixed +- masterTerminationFix option when cluster_manager is specified +- singleNode condition cluster_manager is specified +### Security +--- ## [2.11.0] ### Added ### Changed diff --git a/charts/opensearch/Chart.yaml b/charts/opensearch/Chart.yaml index 3e071a8d..6b61893b 100644 --- a/charts/opensearch/Chart.yaml +++ b/charts/opensearch/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 2.11.0 +version: 2.11.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/opensearch/templates/statefulset.yaml b/charts/opensearch/templates/statefulset.yaml index 5d40ddcb..52d25bd9 100644 --- a/charts/opensearch/templates/statefulset.yaml +++ b/charts/opensearch/templates/statefulset.yaml @@ -354,7 +354,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.name - {{- if (and (has "master" .Values.roles) (not .Values.singleNode)) }} + {{- if (and (or (has "master" .Values.roles) (has "cluster_manager" .Values.roles)) (not .Values.singleNode)) }} - name: cluster.initial_master_nodes value: "{{ template "opensearch.endpoints" . }}" {{- end }} @@ -459,7 +459,7 @@ spec: {{- end }} {{- end }} {{- if .Values.masterTerminationFix }} - {{- if has "master" .Values.roles }} + {{- if or (has "master" .Values.roles) (has "cluster_manager" .Values.roles) }} # This sidecar will prevent slow master re-election - name: opensearch-master-graceful-termination-handler image: "{{ template "opensearch.dockerRegistry" . }}{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"