Using Azure Container Registry:
I'm deploying to K8S in Azure and using the following helm command to create worker:
helm install prefect-worker prefect/prefect-worker --namespace prefect -f ./prefect-worker.yaml
How I can specify the docker image for flow execution? The following is not working:
prefect-worker.yaml
---------------------------------------------------------------------------------
namespaceOverride: prefect
worker:
apiConfig: selfHostedServer
config:
workPool: ingest-pool
workQueues: [default]
name: ingest
baseJobTemplate:
configuration:
image:
abcdef.azurecr.io/prefect
imagePullPolicy: IfNotPresent
---------------------------------------------------------------------------------
- at '/worker/config/baseJobTemplate/configuration': got object, want null or string