mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 00:17:13 +00:00
16 lines
255 B
YAML
16 lines
255 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: mypod
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: add-new-capabilities
|
||
|
image: "ubuntu:18.04"
|
||
|
command:
|
||
|
- /bin/sleep
|
||
|
- "300"
|
||
|
securityContext:
|
||
|
capabilities:
|
||
|
add:
|
||
|
- NET_ADMIN
|