Support installing without cert-manager (#834)

* Support installing without cert-manager
This commit is contained in:
Jonathan Sokolowski
2021-12-09 08:58:46 +11:00
committed by GitHub
parent 4a55fe563c
commit 3de4e7e9c6
5 changed files with 69 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
{{- if .Values.certManagerEnabled }}
# The following manifests contain a self-signed issuer CR and a certificate CR.
# More document can be found at https://docs.cert-manager.io
# WARNING: Targets CertManager 0.11 check https://docs.cert-manager.io/en/latest/tasks/upgrading/index.html for breaking changes
@@ -22,3 +23,4 @@ spec:
kind: Issuer
name: {{ include "actions-runner-controller.selfsignedIssuerName" . }}
secretName: {{ include "actions-runner-controller.servingCertName" . }}
{{- end }}