-
Notifications
You must be signed in to change notification settings - Fork 1.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
Support port-forward address bind with skaffold dev #1358
Comments
well google cloud shell + skaffold won't work currently anyway because of kubernetes/minikube#3392 |
Yeah i need this too, callbacks to the running kubernetes in dev mode are not working from outside services (like payment callbacks). I fix it now by manually also running "kubectl port-forward --address 0.0.0.0" |
@matti You can use a remote cluster to deploy, also your container builds can run in a remote cluster or Google Cloud build. No need to run anything in Cloud Shell as far as I can see...? Also, you would not want to run Minikube in Cloud Shell, it is not made for that. Think about the performance... If it would even start up at all. |
@joostvanderlaan yes I could, but I has training/classroom scenarios in mind |
We need this as well, because current port forwarding (v0.31) opens up forwarded port on My current workaround in "Docker for Desktop (Mac)" is to define port type as "LoadBalancer": ...
type: LoadBalancer
ports:
- port: 3000
targetPort: 3000 |
@demisx I just wanted to say thank you. Indeed, saying that service must be load balanced (with |
@priyawadhwa is this implemented? |
Nope, we don't have support for changing the listening address right now. It could be added to the |
In Kubernetes 1.13
kubernetes/kubernetes#46517
usecase: run
skaffold dev
in google cloud shell (needs 0.0.0.0 binding)The text was updated successfully, but these errors were encountered: