将镜像推送到本地 Kind 支持的 Kubernetes 集群
使用 Podman 桌面版,您可以将镜像推送到本地 Kind 支持的 Kubernetes 集群。
先决条件
- 您已入职容器引擎.
- 您已入职 Kind 集群.
- 您已将 Kubernetes 上下文设置为本地 Kind 支持的 Kubernetes 集群.
- 您的镜像在 **镜像** 页面可用:
<my_image>:<my_tag>
。
步骤
- 打开 **Podman 桌面版仪表盘 > 镜像**。
- ** 搜索镜像**:
<your_image>:<your_tag>
。 - 点击 ** > 将镜像推送到 Kind 集群**。
- 如果您创建了多个 Kind 集群,请从列表中选择您的 Kind 集群。
验证
使用最新版本的 Kind,可以使用 crictl
命令,例如 podman exec -it kind-cluster-control-plane crictl images
。控制平面容器的名称可能会有所不同,因此您可以使用过滤器查询容器
podman exec -it $(podman ps --filter "label=io.x-k8s.kind.role=control-plane" --format {{.Names}}) crictl images
有关详细信息,请参见 Kind 快速入门。