From 2276149c430ccc1d4ecc92dfd7241de0eba6e59a Mon Sep 17 00:00:00 2001 From: K3A Date: Wed, 15 Dec 2021 18:52:16 +0100 Subject: [PATCH] prefer .Chart.AppVersion by default (#175) Do not specify `imageTag` in the default `values.yaml` to use .Chart.AppVersion by default Fixes #177 Signed-off-by: Mario Hros --- charts/opensearch-dashboards/CHANGELOG.md | 13 ++++++++++++- charts/opensearch-dashboards/Chart.yaml | 2 +- charts/opensearch-dashboards/values.yaml | 3 ++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/charts/opensearch-dashboards/CHANGELOG.md b/charts/opensearch-dashboards/CHANGELOG.md index bcaf16d6..05a6fb47 100644 --- a/charts/opensearch-dashboards/CHANGELOG.md +++ b/charts/opensearch-dashboards/CHANGELOG.md @@ -13,6 +13,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Security +--- +## [1.1.2] +### Added +### Changed +- Removed default imageTag from values.yaml to use Chart appVersion image tag by default. +### Deprecated +### Removed +### Fixed +### Security + --- ## [1.1.1] ### Added @@ -97,7 +107,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Security -[Unreleased]: https://github.com/opensearch-project/helm-charts/compare/opensearch-dashboards-1.1.1...HEAD +[Unreleased]: https://github.com/opensearch-project/helm-charts/compare/opensearch-dashboards-1.1.2...HEAD +[1.1.2]: https://github.com/opensearch-project/helm-charts/compare/opensearch-1.1.1...opensearch-1.1.2 [1.1.1]: https://github.com/opensearch-project/helm-charts/compare/opensearch-1.1.0...opensearch-1.1.1 [1.1.0]: https://github.com/opensearch-project/helm-charts/compare/opensearch-1.0.8...opensearch-1.1.0 [1.0.8]: https://github.com/opensearch-project/helm-charts/compare/opensearch-1.0.7...opensearch-1.0.8 diff --git a/charts/opensearch-dashboards/Chart.yaml b/charts/opensearch-dashboards/Chart.yaml index 72def683..b88ccedd 100644 --- a/charts/opensearch-dashboards/Chart.yaml +++ b/charts/opensearch-dashboards/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: 1.1.1 +version: 1.1.2 # 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-dashboards/values.yaml b/charts/opensearch-dashboards/values.yaml index 1e17d441..9432babb 100644 --- a/charts/opensearch-dashboards/values.yaml +++ b/charts/opensearch-dashboards/values.yaml @@ -9,7 +9,8 @@ opensearchHosts: "https://opensearch-cluster-master:9200" replicaCount: 1 image: "opensearchproject/opensearch-dashboards" -imageTag: "1.0.0" +# override image tag, which is .Chart.AppVersion by default +imageTag: "" imagePullPolicy: "IfNotPresent" imagePullSecrets: []