wilsonianb / c8s

Codius-less: web-monetized serverless Kubernetes add-on
Apache License 2.0
3 stars 0 forks source link

Allow c8s installer mode with pre existing SSL certificate #28

Open wilsonianb opened 4 years ago

wilsonianb commented 4 years ago

This saves us from installing cert-manager and acme-dns.

And avoids regenerating identical certificates (and running into let's encrypt rate limits) when testing the c8s installer

wilsonianb commented 4 years ago

To export certificate generated by cert-manager:

kubectl get secret -n gloo-system c8s-certificate -o go-template='{{ index .data "tls.crt" | base64decode }}' > tls.crt
kubectl get secret -n gloo-system c8s-certificate -o go-template='{{ index .data "tls.key" | base64decode }}' > tls.key