Difference between revisions of "Spec.securityContext.fsGroup"

From wikieduonline
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
  
{{containerSecurityContext}}
+
{{kind pod securitycontext}}
 +
 
 +
== See also ==
 +
* {{containerSecurityContext}}
 +
* {{securityContext}}
 +
* {{kind: Pod}}

Latest revision as of 18:58, 27 October 2024


apiVersion: v1
kind: Pod
metadata:
  name: security-context-demo
spec:
  securityContext:
    runAsUser: 1000
    runAsGroup: 3000
    fsGroup: 2000
  volumes:
  - name: sec-ctx-vol
    emptyDir: {}
  containers:
  - name: sec-ctx-demo
    image: busybox:1.28
    command: [ "sh", "-c", "sleep 1h" ]
    volumeMounts:
    - name: sec-ctx-vol
      mountPath: /data/demo
    securityContext:
      allowPrivilegeEscalation: false

See also[edit]

Advertising: