From 5d65a4d2362adb308aa867d22fe08c7cef7625b0 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Mon, 4 Oct 2021 15:01:45 +0200 Subject: [PATCH] chore: reduce resources --- k8s/deploy.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/k8s/deploy.yaml b/k8s/deploy.yaml index 1fb9a61..39d4760 100644 --- a/k8s/deploy.yaml +++ b/k8s/deploy.yaml @@ -47,6 +47,14 @@ spec: image: registry.gitlab.com/unboundsoftware/dancefinder/dancefinder-app:${COMMIT} ports: - containerPort: 80 + resources: + requests: + cpu: 10m + memory: 10Mi + limits: + cpu: 300m + memory: 300Mi + ---