Difference between revisions of "Kubernetes securityContext"

From wikieduonline
Jump to navigation Jump to search
 
(20 intermediate revisions by 4 users not shown)
Line 1: Line 1:
*https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
+
A security context defines privilege and access control settings for a [[Pod]] or [[Container]].
  
Understand <code>SecurityContext</code> field in the [[Pod specification]].
+
The <code>[[securityContext]]</code> field is a <code>[[PodSecurityContext]]</code> [[object]].
  
A security context defines privilege and access control settings for a [[Pod]] or [[Container]].  
+
* https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
 +
* https://jamesdefabia.github.io/docs/user-guide/security-context/
 +
* https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context
  
The [[securityContext]] field is a [[PodSecurityContext]] object.
+
[[kind: Pod]]
 +
[[kind: Deployment]]
  
==Example==
+
== Example ==
 
* <code>pods/security/security-context.yaml</code>
 
* <code>pods/security/security-context.yaml</code>
  
<pre>apiVersion: v1
+
[[apiVersion]]: v1
kind: Pod
+
[[kind: Pod]]
metadata:
+
metadata:
  name: security-context-demo
+
  name: security-context-demo
spec:
+
[[spec:]]
  securityContext:
+
  [[securityContext:]]
    runAsUser: 1000
+
    [[runAsUser:]] 1000
    runAsGroup: 3000
+
    [[runAsGroup:]] 3000
    fsGroup: 2000
+
    fsGroup: 2000
  volumes:
+
  volumes:
  - name: sec-ctx-vol
+
  - name: sec-ctx-vol
    emptyDir: {}
+
    emptyDir: {}
  containers:
+
  containers:
  - name: sec-ctx-demo
+
  - name: sec-ctx-demo
    image: busybox
+
    image: busybox
    command: [ "sh", "-c", "sleep 1h" ]
+
    command: [ "sh", "-c", "sleep 1h" ]
    volumeMounts:
+
    volumeMounts:
    - name: sec-ctx-vol
+
    - name: sec-ctx-vol
      mountPath: /data/demo
+
      mountPath: /data/demo
    securityContext:
+
    securityContext:
      allowPrivilegeEscalation: false</pre>
+
        allowPrivilegeEscalation: false
  
 
== Related terms ==
 
== Related terms ==
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 ==
 +
* Understand <code>SecurityContext</code> field in the [[Pod specification]].
  
 
== See also ==
 
== See also ==
 
* {{CKA}}
 
* {{CKA}}
* {{K8s}}
+
* {{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: