k8s.io/registry.k8s.io@v0.3.1/docs/mirroring/cri-dockerd.md (about) 1 # Mirroring With cri-dockerd 2 3 # Identifying Images to Mirror 4 5 If you're using [cri-dockerd] as a Kubernetes [CRI] implementation, cri-dockerd 6 uses the ["pause" image][pause] from Kubernetes to implement pods. 7 You may want to mirror this critical image to your own host. 8 9 To find the default pause image you can run: 10 ``` 11 cri-dockerd --help | grep pod-infra-container-image 12 ``` 13 14 ## Mirroring Images 15 16 See our general list of [mirroring options](./README.md#Mirroring-Images) 17 18 # Using Mirrored Images 19 20 For pause you can set the `--pod-infra-sandbox-container-image` flag. 21 https://github.com/Mirantis/cri-dockerd/blob/47abdab2c31ffc8b54c826063760662590ef3801/config/options.go#L107 22 23 cri-dockerd does not appear to support configuring mirrors more generally. 24 25 26 [cri-dockerd]: https://github.com/Mirantis/cri-dockerd/ 27 [pause]: https://www.ianlewis.org/en/almighty-pause-container 28 [CRI]: https://kubernetes.io/docs/concepts/architecture/cri/