Try using the air gap installation. You would need to download from a location where you have permission but then simply transfer to your secure location. This is used quite often for very secure environments:
https://docs.kasten.io/latest/install/offline.html?highlight=air%20gap
Hello, Are you using ghcr.io for other images via K10?
As of today, All the k10 images come from gcr.io except kanister-tools. kanister-tools image is stored in ghcr.io.
We also have an alternate registry in AWS ECR(https://kb.kasten.io/knowledge/cannot-access-k10-container-image-repository) where we push our images for each release.
If GHCR is blocked in your environment, You could use public.ecr.aws/kasten-images
with helm flag --set global.airgapped.repository
for k10 to use this registry
You could use the below command to upgrade your current installation to use public.ecr.aws/kasten-images
helm get values k10 --output yaml --namespace=kasten-io > k10_val.yaml && \
helm upgrade k10 kasten/k10 --namespace=kasten-io -f k10_val.yaml \
--set global.airgapped.repository=public.ecr.aws/kasten-images
Thanks for your answers, the installation guide me with the URL https://docs.kasten.io/latest/install/offline.html?highlight=air%20gap
Commented by @Geoff Burke , which worked for me, I had to configure my repository, with this it was installed without problems, thanks for the support, Regards