创建pod,deployment,secret
创建1个名为 qc01ex01-eid 的 pod,在 pod 里面分别为以下每个 images 单独运行一个container: nginx+redis+busybox(提示,1个pod可以包含多个container)
-
C:\Users\fan.hai> kubectl run qc01xe01-fan.hai --image=nginx --dry-run=client -o yaml >qc01ex01.yaml
-
yaml文件修改 (contain name不能有点)
-
执行kubectl apply -f qc01ex01.yaml --dry-run=server
输出结果:pod/qc01xe01-fan.hai created (server dry run)
-
为保证pod全部启动,busybox加上以下代码
-