This commit is contained in:
Jonas Forsberg 2025-03-13 08:01:42 +01:00
parent 49d6d63223
commit e0e33a62db
2 changed files with 91 additions and 0 deletions

View File

@ -0,0 +1,12 @@
# my kubectl plugin scripts
To install
```
git https://git.rre.nu/jonas/kube-plugin.git "$HOME/kube-plugin"
export PATH=$PATH:$HOME/git/kube-plugin
```
Verify that the scripts are picked up in `kubectl`
```
kubectl plugin list
```

79
kubectl-rsh Executable file
View File

@ -0,0 +1,79 @@
#!/usr/bin/env bash
set -aeou pipefail
SCRIPT_VERSION="0.1"
KUBECTL_RSH_IMAGE="${KUBECTL_RSH_IMAGE:-docker.io/library/busybox}"
KUBECTL_RSH_IMAGE_TAG="${KUBECTL_RSH_IMAGE_TAG:-latest}"
KUBECTL_RSH_NAMESPACE="${KUBECTL_RSH_NAMESPACE:-default}"
KUBECTL_RSH_POD_CREATE_TIMEOUT="${KUBECTL_RSH_POD_CREATE_TIMEOUT:-3}"
function print_help(){
cat << EOF
Creates a pod on the node and executes a shell on that node.
You need cluster admin rights and privileged pod execution rights
Usage:
kubectl rsh [nodeName]
EOF
}
if [[ "$1" == "version" ]];then
echo "$SCRIPT_VERSION"
exit 0
fi
if [ "$1" == "--help" ]; then
print_help
exit 0
fi
NODE="$1"
POD=$( kubectl create -n "$KUBECTL_RSH_NAMESPACE" -o name "$@" -f - <<EOF
apiVersion: v1
kind: Pod
metadata:
generateName: rsh-node-
labels:
rre.nu/kubectl-plugin: rsh-node
spec:
nodeName: $NODE
containers:
- name: rsh-node
image: ${KUBECTL_RSH_IMAGE}:${KUBECTL_RSH_IMAGE_TAG}
imagePullPolicy: IfNotPresent
command: ["chroot", "/host"]
tty: true
stdin: true
stdinOnce: true
securityContext:
privileged: true
volumeMounts:
- name: host
mountPath: /host
volumes:
- name: host
hostPath:
path: /
hostNetwork: true
hostIPC: true
hostPID: true
restartPolicy: Never
tolerations:
- operator: "Exists"
EOF
)
echo "Creating $POD in $KUBECTL_RSH_NAMESPACE namespace"
function delete_pod{
kubectl -n "$KUBECTL_RSH_NAMESPACE" "$POD" --wait-false
}
trap delete_pod EXIT
echo "Waiting for pod to be ready..."
kubectl wait -n "$KUBECTL_RSH_NAMESPACE" --for=condition=Ready --timeout ${KUBECTL_RSH_POD_CREATE_TIMEOUT}m "$POD" "$@" >/dev/null
kubectl attach -n "$KUBECTL_RSH_NAMESPACE" -it "$POD" -c rsh-node "$@"