20 lines
746 B
YAML
20 lines
746 B
YAML
# The following manifests contain a self-signed issuer CR and a certificate CR.
|
|
# More document can be found at https://docs.cert-manager.io
|
|
apiVersion: cert-manager.io/v1
|
|
kind: Certificate
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/name: supabase-operator
|
|
app.kubernetes.io/managed-by: kustomize
|
|
name: serving-cert # this name should match the one appeared in kustomizeconfig.yaml
|
|
namespace: system
|
|
spec:
|
|
# SERVICE_NAME and SERVICE_NAMESPACE will be substituted by kustomize
|
|
# replacements in the config/default/kustomization.yaml file.
|
|
dnsNames:
|
|
- SERVICE_NAME.SERVICE_NAMESPACE.svc
|
|
- SERVICE_NAME.SERVICE_NAMESPACE.svc.cluster.local
|
|
issuerRef:
|
|
kind: Issuer
|
|
name: selfsigned-issuer
|
|
secretName: webhook-server-cert
|