Skip to content

Commit c31f656

Browse files
committed
Update service type to ClusterIP and change service port to 80 in Helm templates and values.yaml
1 parent d1d6cf5 commit c31f656

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

helm/templates/service.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ kind: Service
33
metadata:
44
name: {{ .Release.Name }}-svc
55
spec:
6-
type: {{ .Values.service.type }}
6+
type: ClusterIP
77
ports:
8-
- port: {{ .Values.service.port }}
8+
- port: 80
99
targetPort: {{ .Values.service.targetPort }}
1010
protocol: TCP
1111
selector:

helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ image:
77

88
service:
99
type: LoadBalancer
10-
port: 443
10+
port: 80
1111
targetPort: 3000

0 commit comments

Comments
 (0)