fix: use serverPort from config.port, add default value
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -7,7 +7,7 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
type: {{ .Values.service.type }}
|
type: {{ .Values.service.type }}
|
||||||
ports:
|
ports:
|
||||||
- port: {{ .Values.service.port }}
|
- port: {{ .Values.config.port }}
|
||||||
targetPort: http
|
targetPort: http
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
name: http
|
name: http
|
||||||
|
@ -4,7 +4,7 @@ config:
|
|||||||
urlPath: ""
|
urlPath: ""
|
||||||
host: ""
|
host: ""
|
||||||
port: ""
|
port: ""
|
||||||
path: ""
|
path: "3000"
|
||||||
loglevel: ""
|
loglevel: ""
|
||||||
urlAddPort: ""
|
urlAddPort: ""
|
||||||
useSSL: ""
|
useSSL: ""
|
||||||
@ -178,7 +178,8 @@ securityContext: {}
|
|||||||
|
|
||||||
service:
|
service:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
port: 3000
|
# Port option used from config.port
|
||||||
|
# port: 3000
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
Reference in New Issue
Block a user