Difference between revisions of "Configure a Security Context for a Pod or Container"

From wikieduonline
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
* https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
 
* https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
  
<pre>
+
 
apiVersion: v1
+
{{kind_pod_securitycontext}}
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
 
</pre>
 
  
  

Latest revision as of 09:14, 21 May 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: