Deploying to Cloud Functions
Before you begin
Enable the Cloud Functions API:
Enable the Cloud Functions API
Grant the Cloud Functions Developer role to the Cloud Build service account:
Open the Cloud Build Settings page:
Open the Cloud Build Settings page
Set the status of the Cloud Functions Developer role to Enabled.
To run the
gcloudcommands in this page, install the Google Cloud CLI.Keep your application source code that you want to build and deploy to Cloud Functions handy. Your source code needs to be stored in a repository, such as Cloud Source Repositories, GitHub, or Bitbucket.
Configuring the deployment
Cloud Build enables you to use any publicly available container image to execute your tasks. You can do this by specifying the image in a build step in the Cloud Build config file.
Cloud Functions provides the gcloud functions deploy command, which deploys your function from the directory containing your function code. You can use the cloud-sdk image as a build step in your config file to invoke gcloud commands within the image. Arguments passed to this build step are passed to Google Cloud CLI directly, allowing you to run any gcloud command in this image.
To deploy an application to Cloud Functions, use the following steps:
In your project root directory, create the Cloud Build configuration file named
cloudbuild.yamlorcloudbuild.json.In the config file:
Add a
namefield and specify thegcloudbuild step.Add
functions deployto theargsfield to invoke thegcloud functions deploycommand. For available configuration options, seegcloud functions deployreference.--source=.implies that the source code is in the current working directory.
steps:
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
args:
- gcloud
- functions
- deploy
- FUNCTION_NAME
- --region=FUNCTION_REGION
- --source=.
- --trigger-http
- --runtime=RUNTIME
Replace the placeholder values in the config file above with the following:
FUNCTION_NAMEis the name of the Cloud Functions you are deploying. If you're updating an existing function, this value must match the name of the function you're updating.FUNCTION_REGIONis the region to which you're deploying Cloud Functions. For a list of supported regions, see Cloud Functions locations.--trigger-httpis the trigger type for this function, in this case an HTTP request (webhook).RUNTIMEis the runtime in which to run the function.
For more information on using gcloud functions deploy, see the Cloud Functions documentation.
Start the build using the config file created in the previous step:
gcloud builds submit --region=REGION --config CONFIG_FILE_PATH SOURCE_DIRECTORYReplace the placeholder values in the config file above with the following:
CONFIG_FILE_PATHis the path to the build config file.SOURCE_DIRECTORYis the path or URL to the source code.REGIONis one of the supported build regions.
If you don't specify a CONFIG_FILE_PATH and SOURCE_DIRECTORY in the gcloud builds submit command, Cloud Build assumes that the config file and the source code are in the current working directory.
Continuous deployment
You can automate the deployment of your software to Cloud Functions by creating Cloud Build triggers. You can configure your triggers to build and deploy images whenever you update your source code.
To automate your deployment to Cloud Functions:
In your repository root, add a config file with steps to invoke the
gcloud functions deploycommand:YAMLJSON
steps: - name: 'gcr.io/google.com/cloudsdktool/cloud-sdk' args: - gcloud - functions - deploy - FUNCTION_NAME - --region=FUNCTION_REGION - --source=. - --trigger-http - --runtime=RUNTIMEReplace the placeholder values in the config file above with the following:
FUNCTION_NAMEis the name of the Cloud Functions you are deploying. If you're updating an existing function, this value must match the name of the function you're updating.FUNCTION_REGIONis the region to which you're deploying Cloud Functions. For a list of supported regions, see Cloud Functions locations.--trigger-httpis the trigger type for this function, in this case an HTTP request (webhook).RUNTIMEis the runtime in which to run the function.
Create a build trigger with the config file created in the previous step:
Open the Triggers page in the Google Cloud console:
Open Triggers page
Select your project from the project selector drop-down menu at the top of the page.
Click Create Trigger.
In the Name field, enter a name for your trigger.
Under Region, select the region for your trigger.
Note: The region for your trigger must match the region of the function you're deploying to.
Under Event, select the repository event to start your trigger.
Under Source, select your repository and the branch or tag name that will start your trigger. For more information on specifying which branches to autobuild, see Creating a build trigger.
Under Configuration, select Cloud Build configuration file (YAML or JSON).
In the Cloud Build configuration file location field, type
cloudbuild.yamlafter the/.Click Create to save your build trigger.
Anytime you push new code to your repository, you will automatically trigger a build and deploy on Cloud Functions.


