执行语句kubectl run nginx-deploy --image=nginx:1.14-alpine --port=80 --replicas=1
会反馈
Flag --replicas has been deprecated, has no effect and will be removed in the future.并创建出一个nginx-deploy的pod
在K8S v1.18.0以后,–replicas已弃用 ,推荐用 deployment 创建 pods
使用yaml文件的方式,创建nginx服务
step1:删除上面语句生成的nginx-deploy
#找到原先安装的pod的name
kubectl get pods
#删除上面语句产生的nginx-deploy
kubectl delete pods nginx-deploy
step2:vi nginx.yaml
将下面的内容粘贴到nginx.yaml
# API 版本号
apiVersion: apps/v1
# 类型,如:Pod/Replicati