An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
Hello @Inzemam ul haq,
Are you trying to pull the image from Azure Container Registry (ACR)? If so, please verify the following:
Image Availability: Ensure the image exists in the ACR and that the image name and tag are correct.
Platform Compatibility: Confirm that the image supports the platform (e.g., OS/architecture) you're trying to run it on.
Authentication: The error you're encountering might be due to authentication issues, which typically occur when attempting to pull from a private ACR without the necessary credentials.
Cluster Access to ACR: Make sure your AKS cluster has appropriate access to the ACR. You can achieve this using one of the following methods:
Azure AD integration between AKS and ACR
Service principal with pull permissions
Managed identity (recommended for AKS)
I would suggest referring this link- https://learn.microsoft.com/en-us/troubleshoot/azure/azure-kubernetes/extensions/cannot-pull-image-from-acr-to-aks-cluster
Let me know if you need help.