Difference between revisions of "Kubernetes securityContext"

From wikieduonline
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 6: Line 6:
 
* https://jamesdefabia.github.io/docs/user-guide/security-context/
 
* https://jamesdefabia.github.io/docs/user-guide/security-context/
 
* https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context
 
* https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context
 +
 +
[[kind: Pod]]
 +
[[kind: Deployment]]
  
 
== Example ==
 
== Example ==
Line 36: Line 39:
 
* [[CKA v1.18]]: [[Define security contexts]]
 
* [[CKA v1.18]]: [[Define security contexts]]
 
* [[CKA v1.15]]: Understand SecurityContexts
 
* [[CKA v1.15]]: Understand SecurityContexts
 +
* <code>[[RunAsUser:]]</code>
  
 
== Activities ==
 
== Activities ==
Line 43: Line 47:
 
* {{CKA}}
 
* {{CKA}}
 
* {{K8s security}}
 
* {{K8s security}}
 
  
 
[[Category:K8s]]
 
[[Category:K8s]]
 
[[Category:CKA]]
 
[[Category:CKA]]

Latest revision as of 14:23, 27 November 2023

A security context defines privilege and access control settings for a Pod or Container.

The securityContext field is a PodSecurityContext object.

kind: Pod
kind: Deployment

Example[edit]

  • pods/security/security-context.yaml
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
    command: [ "sh", "-c", "sleep 1h" ]
    volumeMounts:
    - name: sec-ctx-vol
      mountPath: /data/demo
    securityContext:
       allowPrivilegeEscalation: false

Related terms[edit]

Activities[edit]

See also[edit]

Advertising: