本题是 2021年六七月份的 zhenti, 由于考点基本一致(大多只是调整参数而已),笔者将其再做了一遍,提供一份参考方法给有需要的小伙伴。
解析
根据 docker 和 k8s 安全准则,修改不符合的选项即可。
参考方法
1 Dockerfile: # vim /home/xxx/Dockerfile 去掉两处 USER root 设置基础镜像为 ubuntu:16.04 2 Pod yaml: # vim /home/xxx/deployment.yaml 注释掉 privileged 那一行的相关配置
软件环境:
系统为 Ubuntu18.04
当前考试版本 1.22
测试环境为 k8s 1.22.1 + Calico
参考文档:
Kubernetes CKS 1.20
Best practices for writing Dockerfiles
Kubernetes Documentation/Concepts/Security
Kubernetes Documentation/Tasks/Configure Pods and Containers/Configure a Security Context for a Pod or Container
Dockerfile Security Best Practice
Docker Container Security 101: Risks and 33 Best Practices
注意!!!