Hello David Maul
For AKS to be able to pull from ACR, AKS's identity needs to be authorized, not you/your email.
If the ACR and AKS are in the same tenant, you can use the following command to integrate them:
az aks update -n myAKSCluster -g myResourceGroup --attach-acr <acr-resource-id>
Reference link: https://learn.microsoft.com/en-us/azure/aks/cluster-container-registry-integration?tabs=azure-cli
If AKS and ACR are in different tenant, you will need to follow the steps in the following documentation: https://learn.microsoft.com/en-us/azure/container-registry/authenticate-aks-cross-tenant
Hopefully this is what you are looking for! If you have additional questions, please let us know in the comments.
If this has been helpful, please take a moment to accept answers as this helps increase visibility of this question for other members of the Microsoft Q&A community. Thank you for helping to improve Microsoft Q&A!