Azure functions not showing on portal, even though deployment was successful

Ayleen Durasno 5 Reputation points Microsoft Employee
2025-12-01T20:59:56.7366667+00:00

Hello. I am using an ADO pipeline to deploy my azure function app to a staging slot. Although the deployment is successful, the functions do not load in the portal overview tab and I hit a 404 error when triggering the endpoint. I tried deploying manually using zip deploy and it worked as expected, am just facing the issue with pipeline deployment

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
{count} vote

1 answer

Sort by: Most helpful
  1. Q&A Assist
    2025-12-01T21:00:08.62+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    It sounds like you might be experiencing a runtime issue rather than a deployment issue since the functions are not showing up in the Azure portal after a successful deployment through the ADO pipeline. Here are a few things to check:

    1. Storage Account Access: Ensure that your function app has access to the required storage account. If the function runtime can't access the storage, it may not start correctly.
    2. Deployment Package: Verify that the deployment package generated by your pipeline is correctly structured and includes all necessary files. The package should be loadable into the /home/site/wwwroot directory.
    3. Configuration Settings: Check your function app configuration settings, such as the runtime or language version and any connection strings for triggers. Incorrect settings can prevent the function host from starting.
    4. Deployment Logs: Review the logs from your ADO pipeline deployment to see if there are any warnings or errors that might indicate what went wrong during the deployment process.
    5. Function Triggers: Ensure that the triggers for your functions are set up correctly and that any external dependencies are accessible and configured properly.

    If you've checked these areas and are still encountering issues, you might want to consider running the Azure Function App Diagnostics to help identify any underlying problems.


    References:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.