From ac8944e1da289990c0937cdb312efed3be67b4a5 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Fri, 10 Feb 2023 00:38:20 +0100 Subject: [PATCH] fix(gitlab-runner): Fix identation for resources and securityContext --- apps/base/gitlab-runner/pod-cleanup.yaml | 28 ++++++++++++------------ 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/apps/base/gitlab-runner/pod-cleanup.yaml b/apps/base/gitlab-runner/pod-cleanup.yaml index 109cdf9f9..f1102cd8c 100644 --- a/apps/base/gitlab-runner/pod-cleanup.yaml +++ b/apps/base/gitlab-runner/pod-cleanup.yaml @@ -38,7 +38,7 @@ metadata: name: pod-cleanup namespace: gitlab-runner spec: - replicas: 2 + replicas: 1 selector: matchLabels: app.kubernetes.io/name: pod-cleanup @@ -52,16 +52,16 @@ spec: containers: - name: gitlab-runner-pod-cleanup image: registry.gitlab.com/gitlab-org/ci-cd/gitlab-runner-pod-cleanup:latest - resources: - requests: - cpu: 10m - memory: 64Mi - limits: - cpu: 250m - memory: 512Mi - securityContext: - capabilities: - drop: ["all"] - add: [] - runAsNonRoot: true - runAsUser: 1000 \ No newline at end of file + resources: + requests: + cpu: 10m + memory: 64Mi + limits: + cpu: 250m + memory: 512Mi + securityContext: + capabilities: + drop: ["all"] + add: [] + runAsNonRoot: true + runAsUser: 1000 \ No newline at end of file -- GitLab