Replies: 3 comments 11 replies
-
How did you create the tarball? Assuming its importing correctly, are you sure it's not getting pruned by the kubelet due to the disk being full? Does it show up in |
Beta Was this translation helpful? Give feedback.
-
I had a similar issue. I decided to uninstall & reinstall WITHOUT providing # second time around I ran:
curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="--tls-san 10.15.50.90 --disable=traefik --disable=servicelb" sh - |
Beta Was this translation helpful? Give feedback.
-
Save and restore images specifying here is how I did, #!/bin/bash
set -euTCo pipefail
set -x
k3s crictl image ls | grep docker | perl -alne 'print "$F[0]:$F[1]"' > list.txt
while read name; do
k3s ctr image export ${name##*/}.tar $name --platform=linux/amd64;
done < list.txt
### import
# ls -1 *.tar | while read name; do k3s ctr image import $name --platform=linux/amd64; done
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
All reactions