mirror of
https://github.com/Threekiii/Awesome-POC.git
synced 2025-11-05 10:50:23 +00:00
15 lines
344 B
YAML
15 lines
344 B
YAML
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;" ] |