Preloading Images in an Airgap Environment #5628
-
I'm attempting to preload images into an airgapped RKE2 installation with the intent of bootstrapping other services like a registry. So far, I've attempted to save the image using skopeo and placing that file in the path For testing purposes, I'm attempting to
But when RKE2 starts, I don't see anything imported like I do when I import the images from
And I don't see the images using crictl:
Is this something that is possible to do? If so, what is the proper way to load the images? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
That's not where the files go. They are supposed to be put in The archive also needs to be in the tarball format produced by |
Beta Was this translation helpful? Give feedback.
-
Ignore the bad copypasta.
I think this was my missing link. What's different between the tools? We don't use docker in our workflow for a number of reasons, so I'm curious if it is just some deficiency in Skopeo or some other issue that could be resolved in the future. |
Beta Was this translation helpful? Give feedback.
That's not where the files go. They are supposed to be put in
/var/lib/rancher/rke2/agent/images
, as the logs indicate.The archive also needs to be in the tarball format produced by
docker save
. Skopeo does not provide the same output format.