Open RajaniCode opened 1 year ago
/retitle Trouble following tutorial "Set up Ingress on Minikube with the NGINX Ingress Controller"
Please refer to the terminal output(s) for details:
It sounds like what you're asking for is a volunteer to read what's there and solve a little puzzle about what is wrong. If you're willing to explain that, then the other contributors in this SIG do not need to become detectives - and will thank you for the extra hint @RajaniCode.
(you might not have realized that the people triaging this issue are volunteers, but that's the truth of it for a very large proportion of our contributors)
More clear explanation of what's wrong and what needs to be fixed in precise format will be very helpful, if you can provide it. /triage needs-information /priority awaiting-more-evidence
I faced the same issue as @RajaniCode. Here's some information from my side:
curl 127.0.0.1
gives me Nginx's 404 Not Found
page. It means now I can connect the nginx but the nginx failed to proxy the request to the backend serverOh boy, this documentation needs help. Hopefully this comment will make it fairly easy for the volunteers to make the necessary updates.
Here's how I got it to work for me:
sudo minikube tunnel
.hello-world.info
to 127.0.0.1
(This is an optional step - see below)curl http://hello-world.info
Hello, world!
Version: 1.0.0
Hostname: web-<somelongnumber>
Some notes:
curl --resolve "hello-world.info:80:127.0.0.1" -i http://hello-world.info
curl http://127.0.0.1
curl localhost
curl http://localhost
curl --resolve "hello-world.info:80:$( minikube ip )" -i http://hello-world.info
I am using an M1 Mac with Docker, so this may be why the minikube ip
command won't work. Nonetheless, this is a fairly standard developer platform so I'm surprised none of the documentation testers were able to get this page to work on their machines.
It still confuses me why I need to use a tunnel with an Ingress, but I suppose that's another story for another day...
Hope this helps... Tim.
The Kubernetes project currently lacks enough contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle stale
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle stale
https://github.com/kubernetes/website/issues/43673#issuecomment-1873049333 is helpful /remove-triage needs-information /remove-lifecycle stale /remove-priority awaitring-more-evidence /triage accepted /priority backlog
@sftim: Those labels are not set on the issue: priority/awaitring-more-evidence
/remove-priority awaiting-more-evidence
"Create an Ingress" is not working. Maintainer edit: see https://github.com/kubernetes/website/issues/43673#issuecomment-1873049333
Part A: Verify that the Ingress controller is directing traffic is not working. Part B: Add external IP address as reported by minikube is not working. Also, Tried creating minikube tunnel for service example-ingress in vain.
Please refer to the terminal output(s) for details:
Terminal Output 1 Part A - Verify that the Ingress controller is directing traffic
Terminal Output 1 Part B - Add external IP address as reported by minikube
Terminal Output 2: - Created minikube tunnel for service example-ingress in vain