Search code examples
kuberneteszalenium

Enabling SSL/HTTPS for Zalenium


I hosted Zalenium in Azure Kubernates, and I need to enable SSL. I see that in the helm charts, there is ingress.yaml with TLS setting, I tried to enable it but apparently nothing happens, does anyone knows what should done ?


Solution

  • As I mentioned in comments, SSL/HTTPS is not just about enabling something in helm chart, it´s more complicated.


    For example

    You could set up nginx ingress controller with Let's Encrypt, which is a free TLS Certificate Authority and you can use it to automatically request and renew Let's Encrypt certificates for public domain names.

    Additionally you need cert-manager, which is a Kubernetes tool that issues certificates from various certificate providers, including Let's Encrypt.


    There are several tutorials about this, for example take a look at these

    Additionally take a look at this stackoverflow answer provided by @Tushar Mahajan.