From 25335bb3c39a7b5c952e2ed91079cbb769fa246c Mon Sep 17 00:00:00 2001 From: Manabu Sakai Date: Thu, 18 Mar 2021 07:33:34 +0900 Subject: [PATCH] Fix typo in certificate.yaml (#396) --- charts/actions-runner-controller/templates/certificate.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/actions-runner-controller/templates/certificate.yaml b/charts/actions-runner-controller/templates/certificate.yaml index 6096463..200d772 100644 --- a/charts/actions-runner-controller/templates/certificate.yaml +++ b/charts/actions-runner-controller/templates/certificate.yaml @@ -5,7 +5,7 @@ apiVersion: cert-manager.io/v1 kind: Issuer metadata: name: {{ include "actions-runner-controller.selfsignedIssuerName" . }} - namespace: {{ .Namespace }} + namespace: {{ .Release.Namespace }} spec: selfSigned: {} --- @@ -13,7 +13,7 @@ apiVersion: cert-manager.io/v1 kind: Certificate metadata: name: {{ include "actions-runner-controller.servingCertName" . }} - namespace: {{ .Namespace }} + namespace: {{ .Release.Namespace }} spec: dnsNames: - {{ include "actions-runner-controller.webhookServiceName" . }}.{{ .Release.Namespace }}.svc