mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 18:06:55 +00:00
17 lines
386 B
YAML
17 lines
386 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: fsgroup-demo
|
||
|
spec:
|
||
|
securityContext:
|
||
|
fsGroup: 2000 # directory will have group ID 2000
|
||
|
volumes:
|
||
|
- name: fsgroup-demo-vol
|
||
|
emptyDir: {}
|
||
|
containers:
|
||
|
- name: fsgroup-demo
|
||
|
image: busybox
|
||
|
command: [ "sh", "-c", "sleep 1h" ]
|
||
|
volumeMounts:
|
||
|
- name: fsgroup-demo-vol
|
||
|
mountPath: /data/demo
|