Skip to content

Commit 2760ac7

Browse files
committed
Remove default values for resources
Signed-off-by: Marc 'risson' Schmitt <[email protected]>
1 parent bf3003e commit 2760ac7

File tree

3 files changed

+19
-15
lines changed

3 files changed

+19
-15
lines changed

charts/velero/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: 1.13.2
33
kubeVersion: ">=1.16.0-0"
44
description: A Helm chart for velero
55
name: velero
6-
version: 6.6.0
6+
version: 6.7.0
77
home: https://github.com/vmware-tanzu/velero
88
icon: https://cdn-images-1.medium.com/max/1600/1*-9mb3AKnKdcL_QD3CMnthQ.png
99
sources:

charts/velero/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ This helm chart installs Velero version v1.13 https://velero.io/docs/v1.13/. See
2222

2323
When installing using the Helm chart, the provider's credential information will need to be appended into your values. The easiest way to do this is with the `--set-file` argument, available in Helm 2.10 and higher. See your cloud provider's documentation for the contents and creation of the `credentials-velero` file.
2424

25+
### Azure resources
26+
27+
When using the Azure plug-in, requests and limits must be set. See https://github.com/vmware-tanzu/velero/issues/3234 and https://github.com/vmware-tanzu/helm-charts/issues/469 for details.
28+
2529
### Installing
2630

2731
The default configuration values for this chart are listed in values.yaml.

charts/velero/values.yaml

+14-14
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ podLabels: {}
7373

7474
# Resource requests/limits to specify for the Velero deployment.
7575
# https://velero.io/docs/v1.6/customize-installation/#customize-resource-requests-and-limits
76-
resources:
77-
requests:
78-
cpu: 500m
79-
memory: 128Mi
80-
limits:
81-
cpu: 1000m
82-
memory: 512Mi
76+
resources: {}
77+
# requests:
78+
# cpu: 500m
79+
# memory: 128Mi
80+
# limits:
81+
# cpu: 1000m
82+
# memory: 512Mi
8383

8484
# Resource requests/limits to specify for the upgradeCRDs job pod. Need to be adjusted by user accordingly.
8585
upgradeJobResources: {}
@@ -535,13 +535,13 @@ nodeAgent:
535535
priorityClassName: ""
536536
# Resource requests/limits to specify for the node-agent daemonset deployment. Optional.
537537
# https://velero.io/docs/v1.6/customize-installation/#customize-resource-requests-and-limits
538-
resources:
539-
requests:
540-
cpu: 500m
541-
memory: 512Mi
542-
limits:
543-
cpu: 1000m
544-
memory: 1024Mi
538+
resources: {}
539+
# requests:
540+
# cpu: 500m
541+
# memory: 512Mi
542+
# limits:
543+
# cpu: 1000m
544+
# memory: 1024Mi
545545

546546
# Tolerations to use for the node-agent daemonset. Optional.
547547
tolerations: []

0 commit comments

Comments
 (0)