21 lines
625 B
YAML
21 lines
625 B
YAML
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"
|