Generate certificate (Extra)

If you want to generate your own SSL certificate, one of the solutions is using OpenSSL. You can do that using the following steps. Please keep in mind that they are not necessary for this specific tutorial as you already have a certificate that's already generated for your cluster.

  • Before creating a route, you will need to generate a TLS certificate, you can generate the key using OpenSSL as follows

openssl genrsa -out key.key
openssl req -new -key key.key -out csr.csr
openssl x509 -req -in csr.csr -signkey key.key -out crt.crt

Last updated

Was this helpful?