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
service:
type: ClusterIP
port: 8080
targetPort: 8080
port: 5000
targetPort: 5000
ingress:
enabled: false
className: ''
@ -147,7 +147,7 @@ monitoring:
labels: {}
healthcheck:
livenessProbe:
enabled: true
enabled: false
httpGet:
path: /healthz
port: 8080
@ -156,7 +156,7 @@ healthcheck:
timeoutSeconds: 5
failureThreshold: 3
readinessProbe:
enabled: true
enabled: false
httpGet:
path: /ready
port: 8080