diff --git a/hello-world-nginx-ingress.yaml b/hello-world-nginx-ingress.yaml index 3554a11..46a202b 100644 --- a/hello-world-nginx-ingress.yaml +++ b/hello-world-nginx-ingress.yaml @@ -3,6 +3,10 @@ kind: Ingress metadata: name: hello-world-nginx-ingress spec: - backend: - serviceName: hello-world-nginx - servicePort: 80 + rules: + - http: + paths: + - path: / + backend: + serviceName: hello-world-nginx + servicePort: 80