Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/openmetadata/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 1.12.5
version: 1.12.6

# 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
Expand Down
2 changes: 2 additions & 0 deletions charts/openmetadata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,8 +362,10 @@ You can enable `gateway` alongside `ingress` during migration. Configure hostnam
| testConnection.resources | object | `{}` |
| securityContext | object | `{}` |
| service.adminPort | string | `8586` |
| service.adminNodePort | int | `` |
| service.annotations | object | `{}` |
| service.port | int | `8585` |
| service.nodePort | int | `` |
| service.type | string | `"ClusterIP"` |
| serviceAccount.annotations | object | `{}` |
| serviceAccount.create | bool | `true` |
Expand Down
6 changes: 6 additions & 0 deletions charts/openmetadata/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,16 @@ spec:
ports:
- port: {{ .Values.service.port }}
targetPort: http
{{- if and (eq "NodePort" .Values.service.type) .Values.service.nodePort }}
nodePort: {{ .Values.service.nodePort }}
{{- end }}
protocol: TCP
name: http
- port: {{ .Values.service.adminPort }}
targetPort: http-admin
{{- if and (eq "NodePort" .Values.service.type) .Values.service.adminNodePort }}
nodePort: {{ .Values.service.adminNodePort }}
{{- end }}
protocol: TCP
name: http-admin
selector:
Expand Down
2 changes: 2 additions & 0 deletions charts/openmetadata/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,9 @@ securityContext: {}
service:
type: ClusterIP
port: 8585
# nodePort: 32085
adminPort: 8586
# adminNodePort: 32086
annotations: {}

# Service monitor for Prometheus metrics
Expand Down