File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 : 1.12.1
18+ version : 1.12.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
Original file line number Diff line number Diff line change @@ -299,8 +299,10 @@ helm install openmetadata open-metadata/openmetadata --values <<path-to-values-f
299299| testConnection.resources | object | ` {} ` |
300300| securityContext | object | ` {} ` |
301301| service.adminPort | string | ` 8586 ` |
302+ | service.adminNodePort | int | `` |
302303| service.annotations | object | ` {} ` |
303304| service.port | int | ` 8585 ` |
305+ | service.nodePort | int | `` |
304306| service.type | string | ` "ClusterIP" ` |
305307| serviceAccount.annotations | object | ` {} ` |
306308| serviceAccount.create | bool | ` true ` |
Original file line number Diff line number Diff line change @@ -13,10 +13,16 @@ spec:
1313 ports :
1414 - port : {{ .Values.service.port }}
1515 targetPort : http
16+ {{- if and (eq "NodePort" .Values.service.type) .Values.service.nodePort }}
17+ nodePort : {{ .Values.service.nodePort }}
18+ {{- end }}
1619 protocol : TCP
1720 name : http
1821 - port : {{ .Values.service.adminPort }}
1922 targetPort : http-admin
23+ {{- if and (eq "NodePort" .Values.service.type) .Values.service.adminNodePort }}
24+ nodePort : {{ .Values.service.adminNodePort }}
25+ {{- end }}
2026 protocol : TCP
2127 name : http-admin
2228 selector :
Original file line number Diff line number Diff line change @@ -485,7 +485,9 @@ securityContext: {}
485485service :
486486 type : ClusterIP
487487 port : 8585
488+ # nodePort: 32085
488489 adminPort : 8586
490+ # adminNodePort: 32086
489491 annotations : {}
490492
491493# Service monitor for Prometheus metrics
You can’t perform that action at this time.
0 commit comments