0

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 ?

Bahram
  • 1,464
  • 2
  • 22
  • 38
  • 1
    I think it´s more complicated than just enabling something in helm chart, for example take a look at this [tutorial](https://docs.bitnami.com/tutorials/secure-kubernetes-services-with-ingress-tls-letsencrypt/). – Jakub Jun 24 '20 at 10:58

1 Answers1

1

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.

Jakub
  • 8,189
  • 1
  • 17
  • 31