Skip to content

Commit

Permalink
[Backport 1.x] Fix missing imagePullPolicy on persistence init contai…
Browse files Browse the repository at this point in the history
…ner (#612)

* Fix missing imagePullPolicy on persistence init container

Signed-off-by: Anna Bruce <[email protected]>

* Bump version numbers

Signed-off-by: Anna Bruce <[email protected]>

* Bump version numbers 1.31.3

Signed-off-by: Anna Bruce <[email protected]>

---------

Signed-off-by: Anna Bruce <[email protected]>
  • Loading branch information
anna-intellegens authored Nov 21, 2024
1 parent 88052a9 commit f82fc9c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions charts/opensearch/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Security
---
## [1.31.3]
### Added
### Changed
### Deprecated
### Removed
### Fixed
- Fix `image.pullPolicy` not being respected by `persistence` init container
### Security
---
## [1.31.2]
### Added
- Allow user-defined labels on persistent volume claim
Expand Down
2 changes: 1 addition & 1 deletion charts/opensearch/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 1.31.2
version: 1.31.3

# 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
Expand Down
1 change: 1 addition & 0 deletions charts/opensearch/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ spec:
{{- if and .Values.persistence.enabled .Values.persistence.enableInitChown }}
- name: fsgroup-volume
image: "{{ template "opensearch.dockerRegistry" . }}{{ .Values.persistence.image | default "busybox" }}:{{ .Values.persistence.imageTag | default "latest" }}"
imagePullPolicy: "{{ .Values.image.pullPolicy }}"
command: ['sh', '-c']
args:
- 'chown -R 1000:1000 /usr/share/opensearch/data'
Expand Down

0 comments on commit f82fc9c

Please sign in to comment.