Kubernetes是否可以默认使用镜像来允许离线网络集群设置?

nzrxty8p  于 2023-06-21  发布在  Kubernetes
关注(0)|答案(1)|浏览(109)

我目前正在使用Kubernetes,我的最终目标是将我的集群转换为离线网络。在这种情况下,我有一个问题,我希望有人可以帮助我。
是否可以将Kubernetes设置为默认使用镜像?我正在使用containerd作为运行时,我想知道这种配置是否可行以及如何可行。我将使用Nexus进行回购。
有谁能提供一些指导,说明这是否可行,如果可以,我需要采取什么步骤?
先谢谢你。

oxf4rvwz

oxf4rvwz1#

拉取容器镜像实际上不是由Kubernetes实现的,它只是将请求发送到CRI插件。容器d does support this though

version = 2

[plugins."io.containerd.grpc.v1.cri".registry]
  [plugins."io.containerd.grpc.v1.cri".registry.mirrors]
    [plugins."io.containerd.grpc.v1.cri".registry.mirrors."docker.io"]
      endpoint = ["https://internal-mirror"]

然后,对于您想要重定向的每个远程注册表,也是类似的。

相关问题