mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-13 14:43:03 +00:00
84f2060d33
The k8s quickstart command is now functional, with suppport for https, xqueue, notes and minio. There are still a few bugs to get rid of, though.
19 lines
350 B
Plaintext
19 lines
350 B
Plaintext
---
|
|
apiVersion: certmanager.k8s.io/v1alpha1
|
|
kind: Certificate
|
|
metadata:
|
|
name: {{ MINIO_HOST|replace(".", "-") }}
|
|
spec:
|
|
secretName: {{ MINIO_HOST }}-tls
|
|
issuerRef:
|
|
name: letsencrypt
|
|
commonName: {{ MINIO_HOST }}
|
|
dnsNames:
|
|
- {{ MINIO_HOST }}
|
|
acme:
|
|
config:
|
|
- http01:
|
|
ingress: web
|
|
domains:
|
|
- {{ MINIO_HOST }}
|