From 9dd22e9f3f7313a36ac3b73281ffa44701cb5bb1 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Sat, 24 Sep 2022 04:00:59 +0200 Subject: [PATCH] fix(gitlab-runner): Fix network policy labels This patch adjust the labels used by the monitoring network policy. This is needed because the current defintion uses the wrong labels. The new labels are directly read from the existing pods, so they should definitely match. --- apps/base/gitlab-runner/networkpolicy.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/base/gitlab-runner/networkpolicy.yaml b/apps/base/gitlab-runner/networkpolicy.yaml index 8b6160be0..d346b29e9 100644 --- a/apps/base/gitlab-runner/networkpolicy.yaml +++ b/apps/base/gitlab-runner/networkpolicy.yaml @@ -6,4 +6,5 @@ metadata: spec: podSelector: matchLabels: - chart: gitlab-runner + app: gitlab-runner + release: gitlab-runner -- GitLab