Difference between revisions of "Template:Kind pod securitycontext"

From wikieduonline
Jump to navigation Jump to search
(Created page with " apiVersion: v1 kind: Pod metadata: name: security-context-demo spec: securityContext: runAsUser: 1000 runAsGroup: 3000 fsGroup: 2000 volumes:...")
 
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
 
   name: security-context-demo
 
   name: security-context-demo
 
  spec:
 
  spec:
   securityContext:
+
   [[securityContext]]:
 
     runAsUser: 1000
 
     runAsUser: 1000
 
     runAsGroup: 3000
 
     runAsGroup: 3000
Line 19: Line 19:
 
       mountPath: /data/demo
 
       mountPath: /data/demo
 
     securityContext:
 
     securityContext:
       allowPrivilegeEscalation: false
+
       [[allowPrivilegeEscalation]]: false

Latest revision as of 09:16, 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

Advertising: