[ci skip] fix nextcloud: increase memory to 4Gi, extend startup probe

- Memory limit: 2Gi → 4Gi (VPA target is 2.8Gi, was OOMKilling)
- Memory request: 512Mi → 1Gi
- Startup probe: 30s delay, 10s timeout, 60 failures (10min total)
  Previous 5min window was too short for NFS-backed SQLite init
This commit is contained in:
Viktor Barzin 2026-02-28 23:32:28 +00:00
parent c20312e41f
commit fcb7d6780e

View file

@ -48,10 +48,10 @@ persistence:
startupProbe: startupProbe:
enabled: true enabled: true
initialDelaySeconds: 10 initialDelaySeconds: 30
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 5 timeoutSeconds: 10
failureThreshold: 30 failureThreshold: 60
successThreshold: 1 successThreshold: 1
podAnnotations: podAnnotations:
@ -64,10 +64,10 @@ collabora:
resources: resources:
limits: limits:
cpu: "2" cpu: "2"
memory: 2Gi memory: 4Gi
requests: requests:
cpu: 100m cpu: 100m
memory: 512Mi memory: 1Gi
cronjob: cronjob:
enabled: true enabled: true