49 lines
1.7 KiB
YAML
49 lines
1.7 KiB
YAML
{{- if and .Values.webhook.enable (not .Values.webhook.secretName) -}}
|
|
{{- if .Values.webhook.certManager.apiVersion }}
|
|
apiVersion: {{ .Values.webhook.certManager.apiVersion }}
|
|
{{- else if .Capabilities.APIVersions.Has "cert-manager.io/v1" }}
|
|
apiVersion: cert-manager.io/v1
|
|
{{- else if .Capabilities.APIVersions.Has "cert-manager.io/v1alpha2" }}
|
|
apiVersion: cert-manager.io/v1alpha2
|
|
{{- else }}
|
|
apiVersion: cert-manager.io/v1alpha1
|
|
{{- end }}
|
|
kind: Certificate
|
|
metadata:
|
|
name: {{ include "polaris.fullname" . }}-cert
|
|
{{- if .Values.templateOnly }}
|
|
namespace: {{ .Release.Namespace }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "polaris.labels" . | nindent 4 }}
|
|
spec:
|
|
commonName: {{ include "polaris.fullname" . }}-webhook.{{ .Release.Namespace }}.svc
|
|
dnsNames:
|
|
- {{ include "polaris.fullname" . }}-webhook.{{ .Release.Namespace }}.svc
|
|
- {{ include "polaris.fullname" . }}-webhook.{{ .Release.Namespace }}
|
|
- {{ include "polaris.fullname" . }}-webhook
|
|
- {{ include "polaris.fullname" . }}-webhook.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }}
|
|
issuerRef:
|
|
kind: Issuer
|
|
name: {{ include "polaris.fullname" . }}-selfsigned
|
|
secretName: {{ include "polaris.fullname" . }}
|
|
---
|
|
{{- if .Values.webhook.certManager.apiVersion }}
|
|
apiVersion: {{ .Values.webhook.certManager.apiVersion }}
|
|
{{- else if .Capabilities.APIVersions.Has "cert-manager.io/v1" }}
|
|
apiVersion: cert-manager.io/v1
|
|
{{- else if .Capabilities.APIVersions.Has "cert-manager.io/v1alpha2" }}
|
|
apiVersion: cert-manager.io/v1alpha2
|
|
{{- else }}
|
|
apiVersion: cert-manager.io/v1alpha1
|
|
{{- end }}
|
|
kind: Issuer
|
|
metadata:
|
|
name: {{ include "polaris.fullname" . }}-selfsigned
|
|
{{- if .Values.templateOnly }}
|
|
namespace: {{ .Release.Namespace }}
|
|
{{- end }}
|
|
spec:
|
|
selfSigned: {}
|
|
{{- end -}}
|