From 1dc7425e35bc2ea070327bdea50f08c5bc394539 Mon Sep 17 00:00:00 2001 From: dhardy Date: Thu, 7 Mar 2024 15:00:14 +0100 Subject: [PATCH 1/3] fix #520 add service port http appProtocol according to Value.protocol Signed-off-by: dhardy --- charts/opensearch/templates/service.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/opensearch/templates/service.yaml b/charts/opensearch/templates/service.yaml index 4c28b2f3..13e16cb8 100644 --- a/charts/opensearch/templates/service.yaml +++ b/charts/opensearch/templates/service.yaml @@ -66,6 +66,7 @@ spec: ports: - name: {{ .Values.service.httpPortName | default "http" }} port: {{ .Values.httpPort }} + appProtocol: {{ upper .Values.protocol }} - name: {{ .Values.service.transportPortName | default "transport" }} port: {{ .Values.transportPort }} - name: {{ .Values.service.metricsPortName | default "metrics" }} From 618c6127ce672eeba488dd665f612852a23b817a Mon Sep 17 00:00:00 2001 From: dhardy Date: Thu, 7 Mar 2024 15:14:16 +0100 Subject: [PATCH 2/3] Bump chart version and update CHANGELOG Signed-off-by: dhardy --- charts/opensearch/CHANGELOG.md | 12 ++++++++++++ charts/opensearch/Chart.yaml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/charts/opensearch/CHANGELOG.md b/charts/opensearch/CHANGELOG.md index 0be6735f..ef35fbf5 100644 --- a/charts/opensearch/CHANGELOG.md +++ b/charts/opensearch/CHANGELOG.md @@ -15,6 +15,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --- +## [2.18.0] +### Added + - Add `service : spec.port[].appProtocol` value according to `Value.protocol` so it could be used with GKE Gateway Controller +### Breaking +### Changed +### Deprecated +### Removed +### Fixed +### Security + +--- + ## [2.18.0] ### Added ### Breaking diff --git a/charts/opensearch/Chart.yaml b/charts/opensearch/Chart.yaml index 7959f5c6..feaab4de 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.18.0 +version: 2.19.0 # 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 From e56142d69bfd23e76809b4e310dcf86422e6fd9b Mon Sep 17 00:00:00 2001 From: dhardy Date: Thu, 7 Mar 2024 15:34:48 +0100 Subject: [PATCH 3/3] bump CHANGELOG version to 2.19.0 Signed-off-by: dhardy --- charts/opensearch/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/opensearch/CHANGELOG.md b/charts/opensearch/CHANGELOG.md index ef35fbf5..b572bcc4 100644 --- a/charts/opensearch/CHANGELOG.md +++ b/charts/opensearch/CHANGELOG.md @@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --- -## [2.18.0] +## [2.19.0] ### Added - Add `service : spec.port[].appProtocol` value according to `Value.protocol` so it could be used with GKE Gateway Controller ### Breaking