Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This page is a summary of the steps we took to get browsertrix-cloud running on-prem in a k3s installation at KB.

...

Code Block
kubectl create token admin-user -n kubernetes-dashboard
Enabling https

Assuming that you got hold of your organisations start-certificate and chain, first concatenate them

Code Block
 cat star.kb.dk.crt star.kb.dk.chain.crt >full.crt

then create a named secret for them

Code Block
 kubectl create secret tls star.kb.dk --key star.kb.dk.key --cert full.crt

Finally in the kubernetes dashboard edit Ingresses → ingress-main by adding in spec:

Code Block
  tls:
     - hosts:
         - btrix-cloud-devel-02.kb.dk
       secretName: star.kb.dk

to add the secret to the ingress.