Difference between revisions of "SecurityContext"

From wikieduonline
Jump to navigation Jump to search
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
[[spec:]]
 +
  securityContext:
 +
    [[runAsNonRoot]]: true
 +
  
[[securityContext:]]
 
  
[[Error: container's runAsUser breaks non-root policy]]
 
  
 
  [[runAsNonRoot]]
 
  [[runAsNonRoot]]
 
  [[runAsUser]]
 
  [[runAsUser]]
 
  [[runAsGroup]]
 
  [[runAsGroup]]
 +
 +
== Examples ==
 +
{{kind_pod_securitycontext}}
 +
 +
 +
== Errors ==
 +
* <code>[[Error: container's runAsUser breaks non-root policy]]</code>
  
 
== Related ==
 
== Related ==
 
* [[Kubernetes changelog]]:  [[AppArmor]] profiles can now be configured through fields on the <code>[[PodSecurityContext]]</code> and container <code>[[SecurityContext]]</code>
 
* [[Kubernetes changelog]]:  [[AppArmor]] profiles can now be configured through fields on the <code>[[PodSecurityContext]]</code> and container <code>[[SecurityContext]]</code>
 +
* [[Configure a Security Context for a Pod or Container]]: <code>[[kind: Pod]]</code>
  
 
== See also ==
 
== See also ==
 
* {{SecurityContext}}
 
* {{SecurityContext}}
* {{CKA}}
 
 
* {{K8s security}}
 
* {{K8s security}}
  
 
[[Category:K8s]]
 
[[Category:K8s]]
[[Category:CKA]]
 

Revision as of 09:16, 21 May 2024

spec:
 securityContext:
   runAsNonRoot: true



runAsNonRoot
runAsUser
runAsGroup

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: