deploy-cloudrun
The deploy-cloudrun
GitHub Action deploys to Google Cloud Run. It
can deploy a container image or from source, and the resulting service URL is
available as a GitHub Actions output for use in future steps.
This is not an officially supported Google product, and it is not covered by a Google Cloud support contract. To report bugs or request features in a Google Cloud product, please contact Google Cloud support.
Prerequisites
-
This action requires Google Cloud credentials that are authorized to access the secrets being requested. See Authorization for more information.
-
This action runs using Node 16. If you are using self-hosted GitHub Actions runners, you must use runner version 2.285.0 or newer.
Usage
jobs:
job_id:
# ...
permissions:
contents: 'read'
id-token: 'write'
steps:
- uses: 'actions/checkout@v3'
- uses: 'google-github-actions/auth@v1'
with:
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
service_account: '[email protected]'
- id: 'deploy'
uses: 'google-github-actions/deploy-cloudrun@v1'
with:
service: 'hello-cloud-run'
image: 'gcr.io/cloudrun/hello'
- name: 'Use output'
run: 'curl "${{ steps.deploy.outputs.url }}"'
Inputs
-
service
: (Required, unless providingmetadata
) ID of the service or fully-qualified identifier of the service. -
image
: (Required, unless providingmetadata
orsource
) Fully-qualified name of the container image to deploy. For example:gcr.io/cloudrun/hello:latest
or
us-docker.pkg.dev/my-project/my-container/image:1.2.3
-
source
: (Required, unless providingmetadata
orimage
) Path to source to deploy. If specified, this will deploy the Cloud Run service from the code specified at the given source directory.This requires the Artifact Registry API to be enabled. Furthermore, the deploying service account must have the
Cloud Build Service Account
role. The initial deployment will create an Artifact Registry repository which requires theArtifact Registry Admin
role.Learn more about Deploying from source code.
-
suffix
: (Optional) String suffix to append to the revision name. The default value is no suffix. -
env_vars
: (Optional) List of key=value pairs to set as environment variables. All existing environment variables will be retained. If bothenv_vars
andenv_vars_file
are specified, the keys in env_vars will take precendence over the keys in env_vars_files.with: env_vars: | FOO=bar ZIP=zap
-
env_vars_file
: (Optional) Path to a file on disk, relative to the workspace, that defines environment variables. The file can be newline-separated KEY=VALUE pairs, JSON, or YAML format. If bothenv_vars
andenv_vars_file
are specified, the keys in env_vars will take precendence over the keys in env_vars_files.FOO=bar ZIP=zap
or
{ "FOO": "bar", "ZIP": "zap" }
or
FOO: 'bar' ZIP: 'zap'
-
secrets
: (Optional) List of key=value pairs to use as secrets. These can either be injected as environment variables or mounted as volumes. All existing environment secrets and volume mounts will be retained.with: secrets: | # As an environment variable: KEY1=secret-key-1:latest # As a volume mount: /secrets/api/key=secret-key-2:latest
-
labels
: (Optional) List of key=value pairs to set as labels on the Cloud Run service. Existing labels will be overwritten.with: labels: my-label=my-value
Labels have strict naming and casing requirements. See Requirements for labels for more information.
-
skip_default_labels
: (Optional) Skip applying the special annotation labels that indicate the deployment came from GitHub Actions. The GitHub Action will automatically apply the following labels which Cloud Run uses to enhance the user experience:managed-by: github-actions commit-sha: <sha>
Setting this to
true
will skip adding these special labels. The default value isfalse
. -
tag
: (Optional) Traffic tag to assign to the newly-created revision. -
timeout
: (Optional) Maximum request execution time, specified as a duration like "10m5s" for ten minutes and 5 seconds. -
flags
: (Optional) Space separate list of other Cloud Run flags. This can be used to access features that are not exposed via this GitHub Action.with: flags: '--add-cloudsql-instances=...'
See the complete list of flags for more information.
Please note, this GitHub Action does not parse or validate the flags. You are responsible for making sure the flags are available on the gcloud version and subcommand. When using
tag_traffic
orrevision_traffic
, the subcommand isgcloud run services update-traffic
. For all other values, the subcommand isgcloud run deploy
. -
no_traffic
: (Optional) If true, the newly deployed revision will not receive traffic. The default value is false. -
revision_traffic
: (Optional, mutually-exclusive withtag_traffic
) Comma-separated list of revision traffic assignments.with: revision_traffic: 'my-revision=10' # percentage
-
tag_traffic
: (Optional, mutually-exclusive withrevision_traffic
) Comma-separated list of tag traffic assignments.with: tag_traffic: 'my-tag=10' # percentage
-
project_id
: (Optional) ID of the Google Cloud project in which to deploy the service. The default value is computed from the environment. -
region
: (Optional) Region in which to deploy the service. The default value isus-central1
. -
gcloud_version
: (Optional) Version of thegcloud
CLI to use. The default value islatest
. -
gcloud_component
: (Optional) Component of thegcloud
CLI to use. Valid values arealpha
andbeta
.
Custom metadata YAML
For advanced use cases, you can define a custom Cloud Run metadata file. This is a YAML description of the Cloud Run service. This allows you to customize your service configuration, such as memory limits, CPU allocation, max instances, and more.
metadata
: (Optional) The path to a Cloud Run service metadata file.
To deploying a new service to create a new YAML service definition:
apiVersion: serving.knative.dev/v1
kind: Service
metadata:
name: SERVICE
spec:
template:
spec:
containers:
- image: IMAGE
To update a revision or to deploy a new revision of an existing service, download and modify the YAML service definition:
gcloud run services describe SERVICE --format yaml > service.yaml
Allowing unauthenticated requests
A Cloud Run product recommendation is that CI/CD systems not set or change settings for allowing unauthenticated invocations. New deployments are automatically private services, while deploying a revision of a public (unauthenticated) service will preserve the IAM setting of public (unauthenticated). For more information, see Controlling access on an individual service.
Outputs
url
: The URL of your Cloud Run service.
Authorization
There are a few ways to authenticate this action. The caller must have permissions to access the secrets being requested.
You will need to authenticate to Google Cloud as a service account with the following roles:
- Cloud Run Admin (
roles/run.admin
):- Can create, update, and delete services.
- Can get and set IAM policies.
This service account needs to be a member of the Compute Engine default service account
,
([email protected])
, with role
Service Account User
. To grant a user permissions for a service account, use
one of the methods found in Configuring Ownership and access to a service account.
Via google-github-actions/auth
Use google-github-actions/auth to authenticate the action. You can use Workload Identity Federation or traditional Service Account Key JSON authentication.
jobs:
job_id:
permissions:
contents: 'read'
id-token: 'write'
steps:
# ...
- uses: 'google-github-actions/auth@v1'
with:
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'
service_account: '[email protected]'
- uses: 'google-github-actions/deploy-cloudrun@v1'
with:
image: 'gcr.io/cloudrun/hello'
service: 'hello-cloud-run'
Via Application Default Credentials
If you are hosting your own runners, and those runners are on Google Cloud, you can leverage the Application Default Credentials of the instance. This will authenticate requests as the service account attached to the instance. This only works using a custom runner hosted on GCP.
jobs:
job_id:
steps:
# ...
- uses: 'google-github-actions/deploy-cloudrun@v1'
with:
image: 'gcr.io/cloudrun/hello'
service: 'hello-cloud-run'
The action will automatically detect and use the Application Default Credentials.
Example Workflows
Versioning
We recommend pinning to the latest available major version:
- uses: 'google-github-actions/deploy-cloudrun@v1'
While this action attempts to follow semantic versioning, but we're ultimately human and sometimes make mistakes. To prevent accidental breaking changes, you can also pin to a specific version:
- uses: 'google-github-actions/[email protected]'
However, you will not get automatic security updates or new features without
explicitly updating your version number. Note that we only publish MAJOR
and
MAJOR.MINOR.PATCH
versions. There is not a floating alias for
MAJOR.MINOR
.