From 804c98fdc3e29c947a1668f6c8bd3a1bbb1fc901 Mon Sep 17 00:00:00 2001 From: Ahmed ElSherbiny Date: Tue, 22 Mar 2022 15:05:18 +0100 Subject: [PATCH 1/2] set spec.hard.pod value to string Signed-off-by: ahmed --- deploy/gatekeeper.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/gatekeeper.yaml b/deploy/gatekeeper.yaml index 203e815cc59..f53f1171200 100644 --- a/deploy/gatekeeper.yaml +++ b/deploy/gatekeeper.yaml @@ -16,7 +16,7 @@ metadata: namespace: gatekeeper-system spec: hard: - pods: 100 + pods: "100" scopeSelector: matchExpressions: - operator: In From 251122959fea9dda04783981dbfa264743ccad36 Mon Sep 17 00:00:00 2001 From: ahmed Date: Tue, 5 Jul 2022 15:37:50 +0200 Subject: [PATCH 2/2] fix: spec.hard.pod value type Signed-off-by: ahmed --- cmd/build/helmify/static/values.yaml | 2 +- config/manager/manager.yaml | 2 +- deploy/gatekeeper.yaml | 2 +- manifest_staging/charts/gatekeeper/values.yaml | 2 +- manifest_staging/deploy/gatekeeper.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cmd/build/helmify/static/values.yaml b/cmd/build/helmify/static/values.yaml index d76fd918d78..89162b450a2 100644 --- a/cmd/build/helmify/static/values.yaml +++ b/cmd/build/helmify/static/values.yaml @@ -51,7 +51,7 @@ image: podAnnotations: {container.seccomp.security.alpha.kubernetes.io/manager: runtime/default} podLabels: {} -podCountLimit: 100 +podCountLimit: "100" secretAnnotations: {} controllerManager: exemptNamespaces: [] diff --git a/config/manager/manager.yaml b/config/manager/manager.yaml index 104953ad104..519c0237040 100644 --- a/config/manager/manager.yaml +++ b/config/manager/manager.yaml @@ -195,7 +195,7 @@ metadata: namespace: system spec: hard: - pods: 100 + pods: "100" scopeSelector: matchExpressions: - operator: In diff --git a/deploy/gatekeeper.yaml b/deploy/gatekeeper.yaml index f53f1171200..203e815cc59 100644 --- a/deploy/gatekeeper.yaml +++ b/deploy/gatekeeper.yaml @@ -16,7 +16,7 @@ metadata: namespace: gatekeeper-system spec: hard: - pods: "100" + pods: 100 scopeSelector: matchExpressions: - operator: In diff --git a/manifest_staging/charts/gatekeeper/values.yaml b/manifest_staging/charts/gatekeeper/values.yaml index d76fd918d78..89162b450a2 100644 --- a/manifest_staging/charts/gatekeeper/values.yaml +++ b/manifest_staging/charts/gatekeeper/values.yaml @@ -51,7 +51,7 @@ image: podAnnotations: {container.seccomp.security.alpha.kubernetes.io/manager: runtime/default} podLabels: {} -podCountLimit: 100 +podCountLimit: "100" secretAnnotations: {} controllerManager: exemptNamespaces: [] diff --git a/manifest_staging/deploy/gatekeeper.yaml b/manifest_staging/deploy/gatekeeper.yaml index 2faa75a97b2..1bb7bedfc6b 100644 --- a/manifest_staging/deploy/gatekeeper.yaml +++ b/manifest_staging/deploy/gatekeeper.yaml @@ -16,7 +16,7 @@ metadata: namespace: gatekeeper-system spec: hard: - pods: 100 + pods: "100" scopeSelector: matchExpressions: - operator: In