File tree Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
12
### Removed
13
13
### Fixed
14
14
### 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
15
25
---
16
26
## [ 2.17.1]
17
27
### Added
@@ -365,7 +375,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
365
375
### Security
366
376
367
377
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
369
380
[ 2.17.1 ] : https://github.com/opensearch-project/helm-charts/compare/opensearch-2.17.0...opensearch-2.17.1
370
381
[ 2.17.0 ] : https://github.com/opensearch-project/helm-charts/compare/opensearch-2.16.1...opensearch-2.17.0
371
382
[ 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
402
413
[ 2.2.0 ] : https://github.com/opensearch-project/helm-charts/compare/opensearch-2.1.0...opensearch-2.2.0
403
414
[ 2.1.0 ] : https://github.com/opensearch-project/helm-charts/compare/opensearch-2.0.1...opensearch-2.1.0
404
415
[ 2.0.1 ] : https://github.com/opensearch-project/helm-charts/compare/opensearch-2.0.0...opensearch-2.0.1
416
+
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 2.17.1
18
+ version : 2.17.2
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ metadata:
16
16
name : {{ $fullName }}
17
17
labels :
18
18
{{- include "opensearch.labels" . | nindent 4 }}
19
+ {{- with .Values.ingress.ingressLabels }}
20
+ {{- toYaml . | nindent 4 }}
21
+ {{- end }}
19
22
{{- with .Values.ingress.annotations }}
20
23
annotations :
21
24
{{ toYaml . | indent 4 }}
Original file line number Diff line number Diff line change @@ -402,6 +402,7 @@ ingress:
402
402
annotations : {}
403
403
# kubernetes.io/ingress.class: nginx
404
404
# kubernetes.io/tls-acme: "true"
405
+ ingressLabels : {}
405
406
path : /
406
407
hosts :
407
408
- chart-example.local
You can’t perform that action at this time.
0 commit comments