diff --git a/charts/opensearch/CHANGELOG.md b/charts/opensearch/CHANGELOG.md index b13ba448..2441dd65 100644 --- a/charts/opensearch/CHANGELOG.md +++ b/charts/opensearch/CHANGELOG.md @@ -13,6 +13,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Security --- +## [2.13.3] +### Added +### Changed +### Deprecated +### Removed +### Fixed +- Correct variable name in keystore import +### Security +--- ## [2.13.2] ### Added ### Changed @@ -293,7 +302,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security -[Unreleased]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.13.2...HEAD +[Unreleased]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.13.3...HEAD +[2.13.3]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.13.1...opensearch-2.13.3 [2.13.2]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.13.1...opensearch-2.13.2 [2.13.1]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.13.0...opensearch-2.13.1 [2.13.0]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.12.0...opensearch-2.13.0 diff --git a/charts/opensearch/Chart.yaml b/charts/opensearch/Chart.yaml index f06b6de5..9c87fab5 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.13.2 +version: 2.13.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 diff --git a/charts/opensearch/templates/statefulset.yaml b/charts/opensearch/templates/statefulset.yaml index d371d900..d5c91a80 100644 --- a/charts/opensearch/templates/statefulset.yaml +++ b/charts/opensearch/templates/statefulset.yaml @@ -280,7 +280,7 @@ spec: {{ .Values.opensearchHome }}/bin/opensearch-keystore create for i in /tmp/keystoreSecrets/*/*; do - [ -f "$file" ] || continue + [ -f "$i" ] || continue key=$(basename $i) echo "Adding file $i to keystore key $key" {{ .Values.opensearchHome }}/bin/opensearch-keystore add-file "$key" "$i"