【发布时间】:2021-12-14 13:57:10
【问题描述】:
如果我删除 spec.containers.command,我似乎无法理解为什么下面提到的 pod 清单不起作用,如果我删除命令,pod 会失败。
这个例子我取自官方documentation
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
【问题讨论】:
标签: kubernetes kubernetes-security