Deploying multiple functions in dotnet within same csproj #1897
-
I might be missing an obvious, but is there a way to deploy a csproj that has multiple functions within it? I tried setting up different triggers, but was no luck (again, likely i'm doing something silly). If I made two projects, I was able to deploy (and no issue with setting up nginx routing to go to right function/triggers). Also, if using the azure template with dotnet http trigger with openapi, is there a way to also deploy it with the /api/swagger/ui too? Thanks in advance for any tips/tricks/info. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
When you deploy multiple functions as part of the same project, they are bundled into one container. That means, you'll be scaling them together - But this is definitely supported. When you say that you had no luck, what were you seeing and how did you deploy it?
This is an Azure Functions question, not really related to KEDA but yes you can do that - https://github.com/Azure/azure-functions-openapi-extension |
Beta Was this translation helpful? Give feedback.
When you deploy multiple functions as part of the same project, they are bundled into one container. That means, you'll be scaling them together - But this is definitely supported.
When you say that you had no luck, what were you seeing and how did you deploy it?
This is an Azure Functions question, not really related to KEDA but yes you can do that - https://github.com/Azure/azure-functions-openapi-extension