Increased limit for Velero pod to 512M. Fixes #3234

Signed-off-by: Dave Smith-Uchida <dsmithuchida@vmware.com>
pull/3235/head
Dave Smith-Uchida 2021-01-12 15:40:04 -08:00
parent 4ae55bb20a
commit bb2891a881
4 changed files with 5 additions and 4 deletions

View File

@ -0,0 +1 @@
Increased default Velero pod memory limit to 512Mi

View File

@ -46,7 +46,7 @@ var (
DefaultVeleroPodCPURequest = "500m"
DefaultVeleroPodMemRequest = "128Mi"
DefaultVeleroPodCPULimit = "1000m"
DefaultVeleroPodMemLimit = "256Mi"
DefaultVeleroPodMemLimit = "512Mi"
DefaultResticPodCPURequest = "500m"
DefaultResticPodMemRequest = "512Mi"
DefaultResticPodCPULimit = "1000m"

View File

@ -80,7 +80,7 @@ At installation, Velero sets default resource requests and limits for the Velero
|CPU request|500m|500m|
|Memory requests|128Mi|512Mi|
|CPU limit|1000m (1 CPU)|1000m (1 CPU)|
|Memory limit|256Mi|1024Mi|
|Memory limit|512Mi|1024Mi|
{{< /table >}}
### Install with custom resource requests and limits
@ -111,7 +111,7 @@ Update the `spec.template.spec.containers.resources.limits` and `spec.template.s
```bash
kubectl patch deployment velero -n velero --patch \
'{"spec":{"template":{"spec":{"containers":[{"name": "velero", "resources": {"limits":{"cpu": "1", "memory": "256Mi"}, "requests": {"cpu": "1", "memory": "128Mi"}}}]}}}}'
'{"spec":{"template":{"spec":{"containers":[{"name": "velero", "resources": {"limits":{"cpu": "1", "memory": "512Mi"}, "requests": {"cpu": "1", "memory": "128Mi"}}}]}}}}'
```
**restic pod**

View File

@ -52,7 +52,7 @@ spec:
resources:
limits:
cpu: "1"
memory: 256Mi
memory: 512Mi
requests:
cpu: 500m
memory: 128Mi