Websites with SSL/TLS is very common. Therefore, let’s add TLS to Azure Application Gateway on AKS.
Pay attention that any configuration configured on A.G manually will be erase by configuration from within AKS cluster.
To have website working with TLS, we first must have certificates. Add certificate.crt and private.key to AKS as a secret object.
kubectl create secret tls UR_SEC_NAME --key private.key --cert certificate.crt

Verify result.

Next, add TLS related data into yaml file.

Once done, valid result.


