Difference between revisions of "Spec.securityContext"

From wikieduonline
Jump to navigation Jump to search
Line 23: Line 23:
 
== See also ==
 
== See also ==
 
* {{SecurityContext}}
 
* {{SecurityContext}}
 +
* {{kind: Pod}}
 
* {{K8s security}}
 
* {{K8s security}}
  
 
[[Category:K8s]]
 
[[Category:K8s]]

Revision as of 18:22, 27 October 2024

spec:
 securityContext:
   runAsNonRoot: true
spec:
  securityContext:
    runAsUser: 1000
    runAsGroup: 3000
    fsGroup: 2000

Examples

 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


Errors

Related

See also

Advertising: