From 81017b130fb2125bdd7c7d8128658f12af1f1cb6 Mon Sep 17 00:00:00 2001 From: Michael Kuhnt Date: Mon, 16 May 2022 01:41:35 +0200 Subject: [PATCH] fix(chart): add missing namespace to webhook.ingress (#1417) The ingress needs to be deployed in the very same namespace as the service it is forwarding to. --- .../templates/githubwebhook.ingress.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/actions-runner-controller/templates/githubwebhook.ingress.yaml b/charts/actions-runner-controller/templates/githubwebhook.ingress.yaml index 4a0e8ef9..68b47bb7 100644 --- a/charts/actions-runner-controller/templates/githubwebhook.ingress.yaml +++ b/charts/actions-runner-controller/templates/githubwebhook.ingress.yaml @@ -11,6 +11,7 @@ apiVersion: extensions/v1beta1 kind: Ingress metadata: name: {{ $fullName }} + namespace: {{ .Release.Namespace }} labels: {{- include "actions-runner-controller.labels" . | nindent 4 }} {{- with .Values.githubWebhookServer.ingress.annotations }}