apiVersion: v1 kind: Pod metadata: name: privileged-container namespace: metarget spec: containers: - name: ubuntu image: ubuntu:latest imagePullPolicy: IfNotPresent securityContext: privileged: true # Just spin & wait forever command: [ "/bin/bash", "-c", "--" ] args: [ "while true; do sleep 30; done;" ]