你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
beyondblog - 标准90后有为青年
赞同来自: henryrao
tang1943
赞同来自:
marsty
yaoguo
要回复问题请先登录或注册
4 个回复
beyondblog - 标准90后有为青年
赞同来自: henryrao
你这个是从旧版本过渡到新版的?
之前我也遇到过 暴力解决方案 直接停掉服务 删除etcd 里面的 /registry 重新启动下k8s 就好
tang1943
赞同来自:
遇到过delete失败的pod,重启运行下pod所在节点的docker
marsty
赞同来自:
The kubectl run line below will create two nginx pods listening on port 80. It will also create a replication controller named my-nginx to ensure that there are always two pods running.
kubectl run my-nginx --image=nginx --replicas=2 --port=80
run的方式是参看了 kubetnetes的官方文档, run之后 rc 没看到 ,deployments里面倒是看到了 my-nginx。。。 只是好奇怎么和官方的说的不一样嘛。。。有人这么玩过吗
yaoguo
赞同来自:
“kubectl run” now produces Deployments (instead of ReplicationControllers) and Jobs (instead of Pods) by default.