[Helm][Ingress] - Exposed Url not working

I deployed Rocket Chat to my Kubernetes Cluster. The installation was successful because I can use the chat by using the port forward option. I would also like to expose the app via ingress and an Url. I chose these configuration parameters listed on “helm-charts/rocketchat at master · RocketChat/helm-charts · GitHub

helm install chat-name rocketchat/rocketchat --namespace chat --set mongodb.auth.password=12345,mongodb.auth.rootPassword=12345,ingress.enabled=true,host=chat.com

When opening the Url I get the error: DNS_PROBE_FINISHED_NXDOMAIN

Did I miss any configuration parameters?

DNS_PROBE_FINISHED_NXDOMAIN means the dns server is unable to resolve the hostname to ip. If it’s local, add the domain to /etc/hosts file. Otherwise check your registrar’s DNS settings.

That said, please also make sure you have an ingress controller installed like nginx. And also pass ingress.ingressClassName={your_insgress_controller_class_name}

1 Like