From b4804ff781a552806dd2f8c9fe7610b64a6075ef Mon Sep 17 00:00:00 2001 From: Domagoj Zecevic Date: Fri, 3 Dec 2021 12:41:37 +0100 Subject: [PATCH] some changes --- 01_onsite/00_infra/checkmk/deployment.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/01_onsite/00_infra/checkmk/deployment.yaml b/01_onsite/00_infra/checkmk/deployment.yaml index 24c4107..4949c1f 100644 --- a/01_onsite/00_infra/checkmk/deployment.yaml +++ b/01_onsite/00_infra/checkmk/deployment.yaml @@ -21,12 +21,16 @@ spec: containers: - name: checkmk image: checkmk/check-mk-raw:2.0.0 + args: # fix an issue with special characters - see https://confluence.atlassian.com/jirakb/error-failed-to-send-request-to-the-knowledge-base-server-943525845.html + - /bin/sh + - -c + - sleep 5h resources: requests: - memory: "512Mi" + memory: "1Gi" cpu: "100m" limits: - memory: "1Gi" + memory: "2Gi" cpu: "4" ports: - containerPort: 5000 @@ -54,7 +58,7 @@ spec: - ReadWriteOnce resources: requests: - storage: 1Gi + storage: 10Gi --- # Service Description apiVersion: v1