1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-09 23:45:31 +02:00

Fix containerPort to not be affected by service.port

This commit is contained in:
Yu Inoue 2023-11-18 00:19:54 +09:00
parent 0575e665fe
commit c58c6c98c5
2 changed files with 5 additions and 1 deletions

View file

@ -35,7 +35,7 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
containerPort: {{ .Values.service.port }}
containerPort: {{ .Values.service.targetPort | default 1337 }}
protocol: TCP
livenessProbe:
httpGet:

View file

@ -46,6 +46,10 @@ securityContext: {}
service:
type: ClusterIP
port: 1337
## @param service.targetPort Planka HTTP container port
## If empty will default to 1337
##
targetPort: 1337
ingress:
enabled: false