skip to Main Content

Nginx Ingress works only if nodeport is added to the host name. How to make it work without nodeport?

I'm trying a simple microservices app on a cloud Kubernetes cluster. This is the Ingress yaml: apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: ingress-nginx-nginx-ingress namespace: default annotations: kubernetes.io/ingress.class: nginx spec: defaultBackend: service: name: auth-svc port: number: 5000 rules: - host: "somehostname.xyz"…

VIEW QUESTION
Back To Top
Search