I was trying to enable TLS in nginx ingress controller. I followed below link and I am able to access my service through https.
https://devopscube.com/configure-ingress-tls-kubernetes/
There are only two extra configuration is needed:
Create a secret resource with self signed certificate.
Pass the secret resource name in ingress resource file as:
tls:
- hosts:
- localhost secretName: my-tls-secret
- hosts:
Now, I want to access my resource with http not with https. But I am not able to revert the behavior's even after reverting the changes.
Could you please help me with that.