Skip to content
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

Add support for running kubectl remotely as an alternative #10843

Closed
afbjorklund opened this issue Mar 16, 2021 · 1 comment · Fixed by #10844
Closed

Add support for running kubectl remotely as an alternative #10843

afbjorklund opened this issue Mar 16, 2021 · 1 comment · Fixed by #10844
Labels
cmd/kubectl Issues with the "kubectl" command kind/feature Categorizes issue or PR as related to a new feature. priority/backlog Higher priority than priority/awaiting-more-evidence.

Comments

@afbjorklund
Copy link
Collaborator

Some clients don't have the possibility to run the kubernetes client locally, due to binaries not being available...

But we already install kubectl on the control plane in the cluster, so we can run that using the ssh connection.

$ minikube kubectl --ssh=false -- get nodes
NAME       STATUS   ROLES                  AGE   VERSION
minikube   Ready    control-plane,master   12h   v1.20.2
$ minikube kubectl --ssh=true -- get nodes
NAME       STATUS   ROLES                  AGE   VERSION
minikube   Ready    control-plane,master   12h   v1.20.2

This makes minikube accessible on more platforms.

Especially when using the ssh driver for the cluster.

@afbjorklund afbjorklund added kind/feature Categorizes issue or PR as related to a new feature. cmd/kubectl Issues with the "kubectl" command labels Mar 16, 2021
@medyagh medyagh added the priority/backlog Higher priority than priority/awaiting-more-evidence. label Mar 16, 2021
@medyagh
Copy link
Member

medyagh commented Mar 16, 2021

sounds like a good idea !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cmd/kubectl Issues with the "kubectl" command kind/feature Categorizes issue or PR as related to a new feature. priority/backlog Higher priority than priority/awaiting-more-evidence.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants