how i deploy image from container registry to azure kubernete service AKS

6/7/2020

I am not able to deploy registry image to Azure Kubernetes

i have one image name hello-world in azure container registry .Now i want this image will be manages by Kubernetes service .

i follow this link here

but not able to understand manifest file and how i generate "yml" file

i pull image from docker registry and push to private container registry .Now my images are kept in azure container registry .Now i want to deploy to AKS from conatiner registry .But how i do this.

-- Bagwan JAI SHREE RAm
azure
azure-aks
kubernetes

1 Answer

6/7/2020

From the docs

  1. Establish an authentication mechanism between AKS and ACR
  2. Ensure you have the proper AKS credentials using az aks get-credentials -g myResourceGroup -n myAKSCluster

  3. Apply the kubernetes deployment yaml to AKS

-- Arghya Sadhu
Source: StackOverflow