1 Star 1 Fork 0

codergeek/go_study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ds.yaml 654 Bytes
一键复制 编辑 原始数据 按行查看 历史
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: centos
namespace: kube-system
labels:
app: centos
spec:
selector:
matchLabels:
name: centos
template:
metadata:
labels:
name: centos
spec:
# 加入宿主机网络命名空间
hostNetwork: true
# 加入宿主机PID命名空间
hostPID: true
# 加入宿主机IPC命名空间
hostIPC: true
containers:
- name: centos
image: centos:6.8
imagePullPolicy: IfNotPresent
securityContext:
# 设置PID为root
runAsUser: 0
# 特权模式
privileged: true
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/codergeek/go_study.git
[email protected]:codergeek/go_study.git
codergeek
go_study
go_study
master

搜索帮助