Skip to content

Commit b460fa4

Browse files
Fix conflicts and update the chart to 2.17.2
Signed-off-by: Prudhvi Godithi <[email protected]>
1 parent 0a4b05b commit b460fa4

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

charts/opensearch/CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
### Removed
1313
### Fixed
1414
### Security
15+
16+
---
17+
## [2.17.2]
18+
### Added
19+
- - Allow user-defined labels on ingress resource
20+
### Changed
21+
### Deprecated
22+
### Removed
23+
### Fixed
24+
### Security
1525
---
1626
## [2.17.1]
1727
### Added
@@ -365,7 +375,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
365375
### Security
366376

367377

368-
[Unreleased]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.17.1...HEAD
378+
[Unreleased]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.17.2...HEAD
379+
[2.17.2]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.17.1...opensearch-2.17.2
369380
[2.17.1]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.17.0...opensearch-2.17.1
370381
[2.17.0]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.16.1...opensearch-2.17.0
371382
[2.16.1]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.16.0...opensearch-2.16.1
@@ -402,3 +413,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
402413
[2.2.0]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.1.0...opensearch-2.2.0
403414
[2.1.0]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.0.1...opensearch-2.1.0
404415
[2.0.1]: https://github.com/opensearch-project/helm-charts/compare/opensearch-2.0.0...opensearch-2.0.1
416+

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.17.1
18+
version: 2.17.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/ingress.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ metadata:
1616
name: {{ $fullName }}
1717
labels:
1818
{{- include "opensearch.labels" . | nindent 4 }}
19+
{{- with .Values.ingress.ingressLabels }}
20+
{{- toYaml . | nindent 4 }}
21+
{{- end }}
1922
{{- with .Values.ingress.annotations }}
2023
annotations:
2124
{{ toYaml . | indent 4 }}

charts/opensearch/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,7 @@ ingress:
402402
annotations: {}
403403
# kubernetes.io/ingress.class: nginx
404404
# kubernetes.io/tls-acme: "true"
405+
ingressLabels: {}
405406
path: /
406407
hosts:
407408
- chart-example.local

0 commit comments

Comments
 (0)