Some checks failed
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/woodpecker/push/woodpecker Pipeline failed
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / security (push) Has been cancelled
- Currently using SQLite (not PostgreSQL) - Redis not implemented yet - Disabled postgresql.enabled and redis.enabled in production and staging values - Removed unnecessary database environment variables from deployment
69 lines
1.2 KiB
YAML
69 lines
1.2 KiB
YAML
# Staging-specific values for peikarband
|
|
|
|
replicaCount: 1
|
|
|
|
image:
|
|
pullPolicy: Always
|
|
|
|
# Reflex configuration for staging
|
|
reflex:
|
|
apiUrl: "https://staging.peikarband.ir" # Staging API URL
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: "traefik"
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: "letsencrypt-staging"
|
|
traefik.ingress.kubernetes.io/router.entrypoints: "websecure"
|
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
|
hosts:
|
|
- host: staging.peikarband.ir
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: peikarband-staging-tls
|
|
hosts:
|
|
- staging.peikarband.ir
|
|
|
|
postgresql:
|
|
enabled: false # Using SQLite for now
|
|
external:
|
|
host: "postgres-staging.default.svc.cluster.local"
|
|
port: "5432"
|
|
database: "peikarband_staging"
|
|
|
|
redis:
|
|
enabled: false # Not used yet
|
|
external:
|
|
host: "redis-staging.default.svc.cluster.local"
|
|
port: "6379"
|
|
|
|
configMap:
|
|
data:
|
|
APP_NAME: "peikarband-staging"
|
|
LOG_LEVEL: "debug"
|
|
ENVIRONMENT: "dev"
|
|
|
|
podDisruptionBudget:
|
|
enabled: false
|
|
|
|
networkPolicy:
|
|
enabled: false
|
|
|
|
monitoring:
|
|
serviceMonitor:
|
|
enabled: false
|
|
|