Installer: migrate internal services to *.p.{domain}
diff --git a/charts/certificate-issuer/templates/wildcard-certificate-private.yaml b/charts/certificate-issuer/templates/wildcard-certificate-private.yaml
new file mode 100644
index 0000000..f869875
--- /dev/null
+++ b/charts/certificate-issuer/templates/wildcard-certificate-private.yaml
@@ -0,0 +1,12 @@
+apiVersion: cert-manager.io/v1
+kind: Certificate
+metadata:
+ name: wildcard-{{ .Values.private.domain }}
+ namespace: {{ .Release.Namespace }}
+spec:
+ dnsNames:
+ - '*.{{ .Values.private.domain }}'
+ issuerRef:
+ name: {{ .Values.private.name }}
+ kind: Issuer
+ secretName: cert-wildcard.{{ .Values.private.domain }}