Failed to get D-Bus connection: Operation not permitted 报错__k8s环境 进入pod 使用 systemctl 命令报错
Failed to get D-Bus connection: Operation not permitted 报错__k8s环境 进入pod 使用 systemctl 命令报错问题描述K8s环境 进入pod 使用 systemctl 命令报错:Failed to get D-Bus connection: Operation not permitted问题原因该pod不是特权级容器K8s环境 创
·
Failed to get D-Bus connection: Operation not permitted 报错__k8s环境 进入pod 使用 systemctl 命令报错
问题描述
K8s环境 进入pod 使用 systemctl 命令报错:
Failed to get D-Bus connection: Operation not permitted
问题原因
该pod不是特权级容器
K8s环境 创建特权级容器 需要在deployment.yaml文件中指定参数
解决方案
修改定义该pod的deployment.yaml文件
在spec下 指定以下参数 (注意格式、要对齐否则不生效)
- command:
- /usr/sbin/init
securityContext:
privileged: true
结果验证
修改完 yaml 文件后
重新进入该pod 执行systemctl start redis 命令 发现无报错
更多推荐
已为社区贡献2条内容
所有评论(0)