Reputation: 376
In production we use Azure Container Registry and AKS. For development, we have K3s on our dev server (on-prem). Is it possible for K3s to pull images from a private registry such as Azure Container Registry?
Upvotes: 0
Views: 865
Reputation: 31384
The short answer is Yes, even if the Azure Container Registry is a private registry, but if you have the username and password with the right permissions, then you can pull the image in it via the username and password. You can take a look at the steps in Azure Container Registry authentication with service principals.
Upvotes: 2