fix(reconciler): update service port and disable health checks in values.alpha.yaml

- Changed service port and targetPort from 8080 to 5000 to align with new service configuration.
- Disabled liveness and readiness probes to simplify health check management.

Signed-off-by: zhenyus <zhenyus@mathmast.com>
This commit is contained in:
zhenyus 2025-08-01 00:04:40 +08:00
parent 1102dfeb80
commit 21b706f5b9

View File

@ -38,8 +38,8 @@ securityContext:
runAsUser: 1000 runAsUser: 1000
service: service:
type: ClusterIP type: ClusterIP
port: 8080 port: 5000
targetPort: 8080 targetPort: 5000
ingress: ingress:
enabled: false enabled: false
className: '' className: ''
@ -147,7 +147,7 @@ monitoring:
labels: {} labels: {}
healthcheck: healthcheck:
livenessProbe: livenessProbe:
enabled: true enabled: false
httpGet: httpGet:
path: /healthz path: /healthz
port: 8080 port: 8080
@ -156,7 +156,7 @@ healthcheck:
timeoutSeconds: 5 timeoutSeconds: 5
failureThreshold: 3 failureThreshold: 3
readinessProbe: readinessProbe:
enabled: true enabled: false
httpGet: httpGet:
path: /ready path: /ready
port: 8080 port: 8080