fixe ci
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
CD - Build & Deploy / build-and-push (push) Has been cancelled
CD - Build & Deploy / package-helm (push) Has been cancelled
CD - Build & Deploy / deploy-staging (push) Has been cancelled
CD - Build & Deploy / deploy-production (push) Has been cancelled
CD - Build & Deploy / release (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / security (push) Has been cancelled

This commit is contained in:
Ehsan.Asadi
2025-12-30 19:47:18 +03:30
parent 1a1d0615ae
commit 886d8c923d
2 changed files with 150 additions and 4 deletions

View File

@@ -36,11 +36,11 @@ podAnnotations:
resources:
limits:
cpu: 200m
memory: 256Mi
cpu: 500m
memory: 512Mi
requests:
cpu: 50m
memory: 128Mi
cpu: 100m
memory: 256Mi
autoscaling:
enabled: false
@@ -95,6 +95,26 @@ redis:
name: "peikarband-prod-secrets"
key: "redis-password"
# Override readiness probe for production (Reflex needs more time to start)
readinessProbe:
httpGet:
path: /ping
port: 8000
initialDelaySeconds: 60 # Increased from 10 to allow Reflex to fully start
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
# Override liveness probe
livenessProbe:
httpGet:
path: /ping
port: 8000
initialDelaySeconds: 90 # Increased from 30
periodSeconds: 15
timeoutSeconds: 5
failureThreshold: 3
configMap:
data:
APP_NAME: "peikarband"