Skip to content

Instantly share code, notes, and snippets.

@liuyangc3
Last active March 12, 2022 01:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liuyangc3/e8e0f5276adc1488848a964ef1710138 to your computer and use it in GitHub Desktop.
Save liuyangc3/e8e0f5276adc1488848a964ef1710138 to your computer and use it in GitHub Desktop.
#!/bin/sh
# this script allow you run a container attached to node with root privilege
# see https://securek8s.dev/exercise/65-privileged/
# usage:
# kubectl get nodes
# ./k8s_attach_node.sh <node name>
node=${1}
if [ -n "${node}" ]; then
nodeSelector='"nodeSelector": { "kubernetes.io/hostname": "'${node:?}'" },'
else
nodeSelector=""
fi
set -x
name="${node//./-}" # replace . with -, pod name doesn't support .
kubectl run $name --restart=Never -it --image overriden --overrides '
{
"spec": {
"hostPID": true,
"hostNetwork": true,
'"${nodeSelector?}"'
"containers": [
{
"name": "$name",
"image": "alpine:3.7",
"command": ["nsenter", "--mount=/proc/1/ns/mnt", "--", "sh", "-c", "hostname sudo--$(cat /etc/hostname); exec /bin/bash"],
"stdin": true,
"tty": true,
"resources": {"requests": {"cpu": "10m"}},
"securityContext": {
"privileged": true
}
}
]
}
}' --attach
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment