From 64c309e3814410dd1c2202ea68db64588391fdf6 Mon Sep 17 00:00:00 2001
From: Arie Peterson <arie@greenhost.nl>
Date: Thu, 10 Feb 2022 16:26:10 +0100
Subject: [PATCH] Reduce cpu requests of velero

---
 flux2/apps/velero/velero-values-configmap.yaml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/flux2/apps/velero/velero-values-configmap.yaml b/flux2/apps/velero/velero-values-configmap.yaml
index 4b459e318..ae514b211 100644
--- a/flux2/apps/velero/velero-values-configmap.yaml
+++ b/flux2/apps/velero/velero-values-configmap.yaml
@@ -5,6 +5,9 @@ metadata:
   name: stackspin-velero-values
 data:
   values.yaml: |
+    resources:
+      requests:
+        cpu: 100m
     # Init containers to add to the Velero deployment's pod spec. At least one
     # plugin provider image is required.
     initContainers:
@@ -99,6 +102,9 @@ data:
     restic:
       podVolumePath: /var/lib/kubelet/pods
       privileged: true
+      resources:
+        requests:
+          cpu: 100m
 
     # Backup schedules to create.
     schedules:
-- 
GitLab