Kubernetes 离线安装——暂停容器

Kubernetes offline installation - pause container

有谁知道kubernetes支持断网等离线安装吗?我下载了所有的部分,安装了一个双节点集群,当我尝试 运行 来自私有注册表的图像时,"kubectl get events" 命令显示容器无法启动,因为它无法下载 gcr .io/google_containers/pause:0.8.0。考虑到环境,这完全有意义,但是是否可以将 kubernetes 配置为使用不同的暂停容器?

kubelet has a --pod-infra-container-image= flag that you can use to change which infra container is used. If you build your own pause container (starting from here,我猜),并上传到您的私人注册表,它应该可以工作(虽然我没有尝试过)。