-
Notifications
You must be signed in to change notification settings - Fork 14.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
change host file entry for Mac #39760
Conversation
For mac, the following parts of the documentation did not work for me: > 1. Add the following line to the bottom of the `/etc/hosts` file on > your computer (you will need administrator access): > ```none > 172.17.0.15 hello-world.info > ``` Instead, my host file needed to point to 127.0.0.1 (localhost) This works on Mac: > ```none > 127.0.0.1 hello-world.info > ``` followed by running the command `minikube tunnel`
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Welcome @nbon12! |
✅ Pull request preview available for checkingBuilt without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My thoughts
content/en/docs/tasks/access-application-cluster/ingress-minikube.md
Outdated
Show resolved
Hide resolved
content/en/docs/tasks/access-application-cluster/ingress-minikube.md
Outdated
Show resolved
Hide resolved
✅ Pull request preview available for checkingBuilt without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site settings. |
…ube.md Co-authored-by: Tim Bannister <tim@scalefactory.com>
…ube.md Co-authored-by: Tim Bannister <tim@scalefactory.com>
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
@nbon12 Can you rebase your changes? |
{{< /note >}} | ||
|
||
{{< note >}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{{< /note >}} | |
{{< note >}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
macOS users: please review this and comment if it works OK for you.
Hello @nbon12 , thank you for these changes & for your initiative! Please could you let us know if you have the bandwidth to continue working on the PR & address the merge conflict? Failing to respond by 25th August, 2023 will result in closure of this PR. |
Hi @nbon12 , |
@reylejano: Closed this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
For mac, the following parts of the documentation did not work for me:
Instead, my host file needed to point to 127.0.0.1 (localhost), and Mac users need to run
minikube tunnel
This works on Mac with minikube running on a Docker back-end:
followed by running the command
minikube tunnel
See this comment: kubernetes/minikube#13510 (comment)