Skip to content

Commit 648476d

Browse files
committed
(fix) : protocol missing for service metrics
Signed-off-by: VILJkid <[email protected]>
1 parent bb6978c commit 648476d

File tree

6 files changed

+29
-4
lines changed

6 files changed

+29
-4
lines changed

charts/opensearch-dashboards/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Fixed
1515
### Security
1616
---
17+
## [2.21.2]
18+
### Added
19+
### Changed
20+
### Deprecated
21+
### Removed
22+
### Fixed
23+
- Bug `protocol` missing for metrics in `Service`
24+
### Security
25+
---
1726
## [2.21.1]
1827
### Added
1928
### Changed
@@ -377,7 +386,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
377386
### Fixed
378387
### Security
379388

380-
[Unreleased]: https://github.com/opensearch-project/helm-charts/compare/opensearch-dashboards-2.21.1...HEAD
389+
[Unreleased]: https://github.com/opensearch-project/helm-charts/compare/opensearch-dashboards-2.21.2...HEAD
390+
[2.21.2]: https://github.com/opensearch-project/helm-charts/compare/opensearch-dashboards-2.21.1...opensearch-dashboards-2.21.2
381391
[2.21.1]: https://github.com/opensearch-project/helm-charts/compare/opensearch-dashboards-2.21.0...opensearch-dashboards-2.21.1
382392
[2.21.0]: https://github.com/opensearch-project/helm-charts/compare/opensearch-dashboards-2.20.0...opensearch-dashboards-2.21.0
383393
[2.20.0]: https://github.com/opensearch-project/helm-charts/compare/opensearch-dashboards-2.19.1...opensearch-dashboards-2.20.0

charts/opensearch-dashboards/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 2.21.1
18+
version: 2.21.2
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/opensearch-dashboards/templates/service.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ spec:
3737
name: {{ .Values.service.httpPortName | default "http" }}
3838
targetPort: {{ .Values.service.port }}
3939
- name: {{ .Values.service.metricsPortName | default "metrics" }}
40+
protocol: TCP
4041
port: {{ .Values.service.metricsPort }}
4142
selector:
4243
app: {{ .Chart.Name }}

charts/opensearch/CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Fixed
1515
### Security
1616
---
17+
## [2.23.2]
18+
### Added
19+
- Metrics configuration in both `Service` templates
20+
### Changed
21+
### Deprecated
22+
### Removed
23+
### Fixed
24+
- Bug `protocol` missing for metrics in `Service`
25+
### Security
26+
---
1727
## [2.23.1]
1828
### Added
1929
### Changed
@@ -459,7 +469,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
459469
### Security
460470

461471

462-
[Unreleased]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.23.1...HEAD
472+
[Unreleased]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.23.2...HEAD
473+
[2.23.2]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.23.1...opensearch-2.23.2
463474
[2.23.1]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.23.0...opensearch-2.23.1
464475
[2.23.0]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.22.1...opensearch-2.23.0
465476
[2.22.1]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.22.0...opensearch-2.22.1

charts/opensearch/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 2.23.1
18+
version: 2.23.2
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/opensearch/templates/service.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ spec:
3232
- name: {{ .Values.service.transportPortName | default "transport" }}
3333
protocol: TCP
3434
port: {{ .Values.transportPort }}
35+
- name: {{ .Values.service.metricsPortName | default "metrics" }}
36+
protocol: TCP
37+
port: {{ .Values.metricsPort }}
3538
{{- if .Values.service.loadBalancerIP }}
3639
loadBalancerIP: {{ .Values.service.loadBalancerIP }}
3740
{{- end }}

0 commit comments

Comments
 (0)