-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
minikube tunnel is asking for a password but not sure what password this is? #11580
Comments
/kind support |
Seems related to the same issue here : #9971 . Even if OP did not respond to the maintainers. Here is some info. Dunno if that may help, but I am facing the same issue using : Instead I tried doing what I got is
Accessing http://127.0.0.1:61962 : I got "connection refused" I got the same "issue" using :
best, |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
/remove-lifecycle stale |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
/remove-lifecycle stale |
I'm running into this issue as well. |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
/remove-lifecycle stale |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
/remove-lifecycle stale |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
Maybe you can set the password for the user
|
@peccu 's solution made it for me |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /close not-planned |
@k8s-triage-robot: Closing this issue, marking it as "Not Planned". 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. |
/reopen |
@bergstenarn: You can't reopen an issue/PR unless you authored it or you are a collaborator. 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. |
I still experience the problem so it would be nice if the ticket could be reopened. |
Same for me |
Same issue here! |
/reopen |
@Style5000: You can't reopen an issue/PR unless you authored it or you are a collaborator. 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. |
This happens when you're mapping a privileged port like port 80 to a container. apiVersion: v1
kind: Service
metadata:
name: foo
spec:
type: LoadBalancer
selector:
app: foo
ports:
# - port: 80 # External
- port: 4000 # External
targetPort: 4000 In development (minikube) you can use an unprivileged port. And when deploying to production (like to GPE), you can change kubernetes.yaml map it back to port 80. I'm no guru. I just ran into the password issue on minikube tunnel after forgetting that I was mapping port 80 which i only do in production. |
I am experimenting with minikube on windows 10 using docker for windows and following https://minikube.sigs.k8s.io/docs/start/ steps to get a sample cluster up and running.
I would like to try out the load balanced deployments, however when in a command prompt started as 'administrator' (or not) I type in minikube tunnel I get the following:
C:\Windows\system32>minikube tunnel
[email protected]'s password:
The problem is that I do not have a clue what password it is expecting? Can you clarify please? Well I did try some docker for windows related passwords but none worked.
Interestingly even with the above the external ip is assigned:
C:\Users\reuben.tonna>kubectl get services
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
balanced LoadBalancer 10.99.196.66 127.0.0.1 8080:32238/TCP 9m8s
But, trying to navigate to localhost:8080 in a browser I get a "connection refused" error.
I tried to clear the state with a minikube delete and recreating the balanced deployment but still the same error.
The text was updated successfully, but these errors were encountered: