ungleich-k8s/generic/alpine-sleep-privileged.yaml

22 lines
625 B
YAML
Raw Normal View History

2024-08-15 21:05:38 +00:00
apiVersion: v1
kind: Pod
metadata:
name: alpine-privileged-serverXX
spec:
containers:
- name: alpine
image: alpine
args:
- sleep
- "1000000"
securityContext:
privileged: true
capabilities:
add: ["NET_ADMIN", "SYS_ADMIN"]
runAsUser: 0 # run as root (or any other user)
hostIPC: true # Use the host's ipc namespace https://www.man7.org/linux/man-pages/man7/ipc_namespaces.7.html
hostNetwork: true # Use the host's network namespace https://www.man7.org/linux/man-pages/man7/network_namespaces.7.html
hostPID: true
nodeSelector:
kubernetes.io/hostname: "serverXX"