AdamSharif-MSFT / kubectl-exec

kubectl-exec is a shell script getting a shell into your kuberntes nodes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

kubectl-exec:

kubectl-exec is a shell script that allows you to get into a node shell.

How it works ?

It works by creating a pod (with a priviledged container) in the node you specified and using nsenter http://man7.org/linux/man-pages/man1/nsenter.1.html for getting a shell into your kuberntes nodes.

The created pod is from alpine official image which is ~2.6 mb in size, once you exit the shell, the pod will be deleted.

asciicast

For Windows Nodes:

It is required to have OpenSSH on windows, with credentials user/pass. SSH keys are currently not supported but will be added soon/

https://docs.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse

Note: AKS nodes have OpenSSH installed by default.

Installation:

wget https://github.com/mohatb/kubectl-exec/raw/master/kubectl-exec

chmod +x ./kubectl-exec

sudo mv ./kubectl-exec /usr/local/bin/kubectl-exec

Usage:

Interactive:
$ kubectl-exec

Non-Interactive
$ kubectl-exec NODE

About

kubectl-exec is a shell script getting a shell into your kuberntes nodes.

License:Apache License 2.0


Languages

Language:Shell 100.0%