Any tutorial on out-of-process model?
Opened this issue · 1 comments
Hi, since out-of-process model is recommended by azure function team, is there a plan to write sample project for out-of-process model?
Thanks!
update: out-of-process is same in terms of running azure function on AKS using workload identity.
what I did was adding this environments to the container and it worked.
env:
- name: FUNCTIONS_WORKER_RUNTIME
value: "dotnet-isolated"
- name: AzureWebJobsStorage__credential
value: "workloadidentity"
- name: AzureWebJobsStorage__accountname
value: ""
as long as your azure storage account is using default domain, you don't need the URIs settings.
Also, AzureWebJobsStorage__clientId does not seem to be required for Queue trigger at least, because AZURE_CLIENT_ID env var is populated automatically by AKS if you have azure.workload.identity/use: "true" and serviceAccount setting in YAML file.