mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-12 22:27:47 +00:00
18 lines
349 B
Plaintext
18 lines
349 B
Plaintext
---
|
|
apiVersion: certmanager.k8s.io/v1alpha1
|
|
kind: Certificate
|
|
metadata:
|
|
name: {{ NOTES_HOST|replace(".", "-") }}
|
|
spec:
|
|
secretName: {{ NOTES_HOST }}-tls
|
|
issuerRef:
|
|
name: letsencrypt
|
|
commonName: {{ NOTES_HOST }}
|
|
dnsNames:
|
|
- {{ NOTES_HOST }}
|
|
acme:
|
|
config:
|
|
- http01:
|
|
ingress: web
|
|
domains:
|
|
- {{ NOTES_HOST }} |