November 2019
Intermediate to advanced
362 pages
7h 52m
English
Once KEDA is installed, you can deploy your container on it. When deploying a container on Kubernetes, you should set it up so that it will be able to access the container registry. If you're using AKS and want to authenticate to ACR, you can follow the guide found at https://docs.microsoft.com/en-us/azure/container-registry/container-registry-auth-aks#grant-aks-access-to-acr:
func kubernetes deploy --name nameOfTheFunctionAppInsideKubernetes --image-name yourAcrName.azurecr.io/mycustomimage:v1.0.0
To see whether the container was deployed correctly, you can use the following command, with the optional --watch option to keep it running until you stop it:
kubectl get pods
The following screenshot ...