Merge "fix: Update helm service.yaml file"

This commit is contained in:
Zuul 2024-05-14 11:51:36 +00:00 committed by Gerrit Code Review
commit 330325d9f1
2 changed files with 5 additions and 4 deletions

View File

@ -8,11 +8,11 @@ spec:
type: {{ .Values.service.type }} type: {{ .Values.service.type }}
ports: ports:
- port: {{ .Values.service.pgadminPort }} - port: {{ .Values.service.pgadminPort }}
targetPort: pgadmin targetPort: {{ .Values.service.pgadminPort }}
protocol: TCP protocol: TCP
name: pgadmin name: pgadmin
- port: {{ .Values.service.onmApiPort }} - port: {{ .Values.service.onmApiExposePort }}
targetPort: onm-api targetPort: {{ .Values.service.onmApiApplicationPort }}
protocol: TCP protocol: TCP
name: onm-api name: onm-api
selector: selector:

View File

@ -40,7 +40,8 @@ service:
type: ClusterIP type: ClusterIP
port: 80 port: 80
pgadminPort: 5050 pgadminPort: 5050
onmApiPort: 8082 onmApiExposePort: 8082
onmApiApplicationPort: 8080
ingress: ingress:
enabled: false enabled: false