Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人在 Windows 上尝试过 microk8s(我只需要将它用于我一直使用 debian 的进程)我在将图像导入 microk8s 时出错
命令: microk8s ctr image import image.tar
microk8s ctr image import image.tar
回复: ctr: open image.tar: no such file or directory 尝试使用“multipass”执行“sudo microk8s.ctr image import image.tar”时出错:返回退出代码1。
该microk8s.ctr ...命令正在由 multipass 管理的 VM 内部执行,因此它无法从主机访问文件。
microk8s.ctr ...
为了导入它,必须首先将映像从主机系统传输到 VM。
multipass transfer image.tar microk8s-vm:/tmp/image.tar
然后才导入
microk8s ctr image import /tmp/image.tar