bcd
bcd

Reputation: 376

How to pull images from Azure Container Registry when using K3s?

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

Answers (1)

Charles Xu
Charles Xu

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

Related Questions