Initial translation for Security Context.

Added the example files.

One small change to fix the broken deployment.
This commit is contained in:
Aris Cahyadi Risdianto
2020-05-12 21:09:27 +08:00
parent b31f2e3bfe
commit cd098561aa
6 changed files with 485 additions and 0 deletions
@@ -0,0 +1,21 @@
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