An Azure service that provides an event-driven serverless compute platform.
Hi david shephard,
Open Kudu Console
- Go to your Function App in the Azure Portal.
- In the left menu, click on Development Tools > Advanced Tools (Kudu) and then click Go.
Alternatively, go directly to: https://<your-function-app-name>.scm.azurewebsites.net/DebugConsole
Navigate to the Folder
- In the Kudu Debug Console, navigate to /tmp/zipdeploy (on Linux/Consumption) or D:\home\data\SitePackages (on Windows).
- You can do this by typing the path into the text box above the file browser and hitting Enter.
Delete the ZIP Files
- Find the ZIP files you wish to delete (those left from old or problematic deployments).
- Click the trash icon next to each .zip file, or check boxes and select "Delete" at the top.
Restart Function App
- Go back to the Azure Portal and restart your Function App (click "Restart" at the top).
- This step ensures that the application is restarted and no longer references old, deleted deployment artifacts.
Zip push deployment for Azure Functions | Microsoft Learn
go - How to reset Kudu cached deployment on Azure - Stack Overflow
I hope the provided answer is helpful,
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.
Thanks