-
Notifications
You must be signed in to change notification settings - Fork 4
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
chore(make): use kubectl port-forward for local cluster traffic #1681
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,9 +39,9 @@ minikube-dashboard: | |
minikube --profile minikube-wbaas dashboard | ||
|
||
.PHONY: minikube-tunnel | ||
minikube-tunnel: # @HELP Open a tunnel to the local cluster and expose it on an IP on the host system | ||
minikube-tunnel: # @HELP Open a tunnel to the local ingress via kubectl and expose it at port 80 on the host system | ||
minikube-tunnel: | ||
./bin/minikube-tunnel | ||
sudo -E kubectl --context minikube-wbaas port-forward -n kube-system service/ingress-nginx-controller 80:80 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unfortunately this doesn't work for me: I get There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
.PHONY: helmfile-fetch | ||
helmfile-fetch: # @HELP Fetch all charts defined in the Helmfile. This works across all environments | ||
|
This file was deleted.
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.
maybe it would make sense to introduce a new target to be called like
make minikube-port-forward
or something?