k8s.io/registry.k8s.io@v0.3.1/docs/mirroring/cri-o.md (about) 1 # Mirroring With cri-o 2 3 # Identifying Images to Mirror 4 5 If you're using [cri-o] as a Kubernetes [CRI] implementation, cri-o 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 The pause image confiured can be found by running: 10 ```shell 11 cri-o config | grep pause_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 see `pause_image` in the `cri.image` config docs: 21 https://github.com/cri-o/cri-o/blob/main/docs/crio.conf.5.md#crioimage-table 22 23 cri-o also supports configuring mirrors for registry hosts, which is documented at: 24 https://github.com/containers/image/blob/main/docs/containers-registries.conf.5.md 25 26 You can use containers-registries.conf to configure a mirror for registry.k8s.io 27 28 29 [cri-o]: https://cri-o.io/ 30 [pause]: https://www.ianlewis.org/en/almighty-pause-container 31 [CRI]: https://kubernetes.io/docs/concepts/architecture/cri/