发布时间: 2023-8-6 文章作者: myluzh 分类名称: Kubernetes 朗读文章
0x01 生成yaml文件
#通过kubectl create 生成yaml文件 kubectl create deployment web --image=nginx -o yaml --dry-run >ng.yaml
0x02 导出yaml文件
#通过kubectl get 导出yaml文件 kubectl get deploy nginx -o yaml --export > ng.yaml
发表评论