[SDC] Fix sdc-helm-validator resource settings
As the pod uses more memory than specified as limit
the resources setting needed to be increased
Issue-ID: OOM-3190
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Change-Id: I8af7063c77da0e8c5cdc32d9f6dedb6388bbc875
diff --git a/kubernetes/sdc/components/sdc-helm-validator/values.yaml b/kubernetes/sdc/components/sdc-helm-validator/values.yaml
index a2b4ef3..39f9a91 100644
--- a/kubernetes/sdc/components/sdc-helm-validator/values.yaml
+++ b/kubernetes/sdc/components/sdc-helm-validator/values.yaml
@@ -59,15 +59,15 @@
small:
limits:
cpu: 1
- memory: 256Mi
+ memory: 0.5Gi
requests:
- cpu: 1
- memory: 256Mi
+ cpu: 0.5
+ memory: 0.5Gi
large:
limits:
cpu: 2
memory: 1Gi
requests:
cpu: 1
- memory: 256Mi
+ memory: 1Gi
unlimited: {}