Use nginx rootless ports
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Nikolai Rodionov 2025-02-15 16:48:36 +01:00
parent e2633f55b8
commit c9cecbcf3e
Signed by: allanger
GPG Key ID: 09F8B434D0FDD99B

View File

@ -20,13 +20,13 @@ base:
livenessProbe: livenessProbe:
httpGet: httpGet:
path: / path: /
port: 80 port: 8080
initialDelaySeconds: 3 initialDelaySeconds: 3
periodSeconds: 3 periodSeconds: 3
readinessProbe: readinessProbe:
httpGet: httpGet:
path: / path: /
port: 80 port: 8080
initialDelaySeconds: 3 initialDelaySeconds: 3
periodSeconds: 3 periodSeconds: 3
volumeMounts: volumeMounts:
@ -55,7 +55,7 @@ ingress:
service: service:
name: '{{ include "chart.fullname" $ }}-main' name: '{{ include "chart.fullname" $ }}-main'
port: port:
number: 80 number: 8080
path: / path: /
pathType: Prefix pathType: Prefix
tls: tls:
@ -68,6 +68,6 @@ services:
type: ClusterIP type: ClusterIP
ports: ports:
http: http:
port: 80 port: 8080
targetPort: 80 targetPort: 8080
protocol: TCP protocol: TCP