From ad889aae05aa79502bdd202cb5ba9dd59b062167 Mon Sep 17 00:00:00 2001 From: Jan Lohage Date: Mon, 20 Nov 2023 14:19:07 +0100 Subject: [PATCH] Temporarily fix upstream issue with velero-upgrade-crds pod's memory limits .upgradeJobResources defaults are too low (128Mi limit). set them to something generous that actually works. Revert this once https://github.com/vmware-tanzu/helm-charts/issues/515 is resolved (#1168) Signed-off-by: Jan Lohage --- configuration/configuration/templates/velero.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configuration/configuration/templates/velero.yaml b/configuration/configuration/templates/velero.yaml index 86350feccc9..0beed3734b5 100644 --- a/configuration/configuration/templates/velero.yaml +++ b/configuration/configuration/templates/velero.yaml @@ -112,4 +112,13 @@ stringData: ttl: "2160h0m" includedNamespaces: - '*' + + # TODO: Remove upgradeJobResources once https://github.com/vmware-tanzu/helm-charts/issues/515 is resolved + upgradeJobResources: + requests: + cpu: 50m + memory: 256Mi + limits: + cpu: 100m + memory: 512Mi {{- end }}