Skip to content
AdamQQQ edited this page Mar 28, 2023 · 16 revisions

Frequently Asked Questions

At any time, let's continue to update.

Q: Where can I find documentation?

You could find them in: https://github.com/dragonflyoss/image-service/tree/master/docs

Q: How to sync nydus images between different registries?

You could using nerdctl to sync nydus images with --unpack false

nerdctl pull --unpack false tomcat:latestnydusv6
nerdctl tag tomcat:latestnydusv6 ghcr.io/username/tomcat:latestnydusv6
nerdctl push --allow-nondistributable-artifacts   ghcr.io/username/tomcat:latestnydusv6

Q: Can't start nydus pod in K8s. Error: failed to get reader from content store: content digest sha256:*** not found

You could try to set discard_unpapcked_layers = false in /etc/containerd/config.toml

[plugins."io.containerd.grpc.v1.cri".containerd]
  discard_unpacked_layers = false

Or please refer to the following documents to deploy pods in k8s: https://github.com/containerd/nydus-snapshotter/blob/main/docs/run_nydus_in_kubernetes.md

Clone this wiki locally