title | description | services | documentationcenter | author | manager | editor | tags | ms.assetid | ms.service | ms.devlang | ms.topic | ms.tgt_pltfrm | ms.workload | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Continuous deployment for Azure Functions | Microsoft Docs |
Use continuous deployment facilities of Azure App Service to publish your Azure Functions. |
functions |
na |
ggailey777 |
erikre |
361daf37-598c-4703-8d78-c77dbef91643 |
functions |
multiple |
article |
multiple |
na |
09/25/2016 |
glenga |
Azure Functions makes it easy to configure continuous deployment for your function app. Functions uses Azure App Service integration with BitBucket, Dropbox, GitHub, and Visual Studio Team Services (VSTS) to enable a continuous deployment workflow where Azure pulls updates to your functions code when they are published to one of these services. If you are new to Azure Functions, start with Azure Functions Overview.
Continuous deployment is a great option for projects where multiple and frequent contributions are being integrated. It also lets you maintain source control on your functions code. The following deployment sources are currently supported:
- Bitbucket
- Dropbox
- Git local repo
- Git external repo
- GitHub
- Mercurial external repo
- OneDrive
- Visual Studio Team Services
Deployments are configured on a per-function-app basis. After continuous deployment is enabled, access to function code in the portal is set to read-only.
You must have your deployment source configured and your functions code in the deployment source before you set-up continuous deployment. In a given function app deployment, each function lives in a named subdirectory, where the directory name is the name of the function. This folder structure is essentially your site code.
[!INCLUDE functions-folder-structure]
Use the following procedure to configure continuous deployment for an existing function app:
-
In your function app in the Azure Functions portal, click Function app settings > Configure continuous integration > Setup.
You can also get to the Deployments blade from the Functions quickstart by clicking Start from source control.
-
In the Deployment source blade, click Choose source, then fill-in the information for your chosen deployment source and click OK.
After continuous deployment is configured, all changes files in your deployment source are copied to the function app and a full site deployment is triggered. The site is redeployed when files in the source are updated.
The following are some typical deployment scenarios:
Function Apps doesn't yet support deployment slots. However, you can still manage separate staging and production deployments by using continuous integration.
The process to configure and work with a staging deployment looks generally like this:
-
Create two function apps in your subscription, one for the production code and one for staging.
-
Create a deployment source, if you don't already have one. This example uses GitHub.
-
For your production function app, complete the above steps in Set up continuous deployment and set the deployment branch to the master branch of your GitHub repo.
-
Repeat this step for the staging function app, but choose the staging branch instead in your GitHub repo. If your deployment source doesn't support branching, use a different folder.
-
Make updates to your code in the staging branch or folder, then verify that those changes are reflected in the staging deployment.
-
After testing, merge changes from the staging branch into the master branch. This will trigger deployment to the production function app. If your deployment source doesn't support branches, overwrite the files in the production folder with the files from the staging folder.
When you have existing functions that you have created and maintained in the portal, you need to download your existing function code files using FTP or the local Git repository before you can set up continuous deployment as described above. You can do this in the App Service settings for your function app. After your files are downloaded, you can upload them to your chosen continuous deployment source.
Note
After you configure continuous integration, you will no longer be able to edit your source files in the Functions portal.
- How to: Configure deployment credentials
- How to: Download files using FTP
- How to: download files using the local Git repository
Before you can download files from your function app with FTP or local Git repository, you must configure your credentials to access the site, which you can do from the portal. Credentials are set at the Function app level.
-
In your function app in the Azure Functions portal, click Function app settings > Go to App Service settings > Deployment credentials.
-
Type in a username and password, then click Save. You can now use these credentials to access your function app from FTP or the built-in Git repo.
-
In your function app in the Azure Functions portal, click Function app settings > Go to App Service settings > Properties and copy the values for FTP/Deployment User, FTP Host Name, and FTPS Host Name.
FTP/Deployment User must be entered as displayed in the portal, including the app name, in order to provide proper context for the FTP server.
-
From your FTP client, use the connection information you gathered to connect to your app and download the source files for your functions.
-
In your function app in the Azure Functions portal, click Function app settings > Configure continuous integration > Setup.
-
In the Deployments blade, click Choose source, Local Git repository, then click OK.
-
Click Go to App Service settings > Properties and note the value of Git URL.
-
Clone the repo on your local machine using a Git-aware command line or your favorite Git tool. The Git clone command looks like the following:
git clone https://[email protected]:443/my-function-app.git
-
Fetch files from your function app to the clone on your local computer, as in the following example:
git pull origin master
If requested, supply the username and password for your function app deployment.