Skip to content

Commit

Permalink
fix: service yaml port
Browse files Browse the repository at this point in the history
  • Loading branch information
Lim-Changi committed Mar 17, 2024
1 parent 4b8de3a commit 345ec5d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .devops/k8s/acon-k8s/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ metadata:
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
- name: nest-app-port
protocol: TCP
name: http
port: 80
targetPort: {{ .Values.service.port }}
# - port: {{ .Values.service.port }}
# targetPort: http
# protocol: TCP
# name: http
selector:
{{- include "acon-k8s.selectorLabels" . | nindent 4 }}

0 comments on commit 345ec5d

Please sign in to comment.