75 lines
2.2 KiB
YAML
75 lines
2.2 KiB
YAML
---
|
|
# Create a selfsigned Issuer, in order to create a root CA certificate for
|
|
# signing webhook serving certificates
|
|
apiVersion: certmanager.k8s.io/v1alpha1
|
|
kind: Issuer
|
|
metadata:
|
|
name: {{ include "webhook.selfSignedIssuer" . }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels:
|
|
app: {{ include "webhook.name" . }}
|
|
chart: {{ include "webhook.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
spec:
|
|
selfsigned: {}
|
|
|
|
---
|
|
|
|
# Generate a CA Certificate used to sign certificates for the webhook
|
|
apiVersion: certmanager.k8s.io/v1alpha1
|
|
kind: Certificate
|
|
metadata:
|
|
name: {{ include "webhook.rootCACertificate" . }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels:
|
|
app: {{ include "webhook.name" . }}
|
|
chart: {{ include "webhook.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
spec:
|
|
secretName: {{ include "webhook.rootCACertificate" . }}
|
|
issuerRef:
|
|
name: {{ include "webhook.selfSignedIssuer" . }}
|
|
commonName: "ca.webhook.cert-manager"
|
|
isCA: true
|
|
|
|
---
|
|
|
|
# Create an Issuer that uses the above generated CA certificate to issue certs
|
|
apiVersion: certmanager.k8s.io/v1alpha1
|
|
kind: Issuer
|
|
metadata:
|
|
name: {{ include "webhook.rootCAIssuer" . }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels:
|
|
app: {{ include "webhook.name" . }}
|
|
chart: {{ include "webhook.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
spec:
|
|
ca:
|
|
secretName: {{ include "webhook.rootCACertificate" . }}
|
|
|
|
---
|
|
|
|
# Finally, generate a serving certificate for the webhook to use
|
|
apiVersion: certmanager.k8s.io/v1alpha1
|
|
kind: Certificate
|
|
metadata:
|
|
name: {{ include "webhook.servingCertificate" . }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels:
|
|
app: {{ include "webhook.name" . }}
|
|
chart: {{ include "webhook.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
spec:
|
|
secretName: {{ include "webhook.servingCertificate" . }}
|
|
issuerRef:
|
|
name: {{ include "webhook.rootCAIssuer" . }}
|
|
dnsNames:
|
|
- {{ include "webhook.fullname" . }}
|
|
- {{ include "webhook.fullname" . }}.{{ .Release.Namespace }}
|
|
- {{ include "webhook.fullname" . }}.{{ .Release.Namespace }}.svc
|