You can use your own local registry to store the Atmosphere images. The scope of this document does not include how to setup a local registry.
Mirror all images to your own registry
atmosphere image mirror 192.168.0.20:5000/atmosphere
Update the Atmosphere image repository variable
atmosphere_image_repository: 192.168.0.20:5000/atmosphere
If needed, you can also set your registry to be an insecure registry inside containerd
:
containerd_insecure_registries: - 192.168.0.20:5000/atmosphere
You can verify that all your images are running from your local registry by running the following command:
kubectl get pods --all-namespaces \ -o jsonpath="{.items[*].spec.containers[*].image}" | \ tr -s '[[:space:]]' '\n' | \ sort | \ uniq -c | \ sort -n