Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update cloudrun docs to include log streaming and Job support #8338

Merged
merged 1 commit into from
Jan 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ See the [Cloud Run YAML reference](https://cloud.google.com/run/docs/reference/y

This deployer will use the [application default credentials](https://cloud.google.com/docs/authentication/production#automatically) to deploy. You can configure this to use your user credentials by running `gcloud auth application-default login`.

# Features
- As of Skaffold `v2.1.0`, Skaffold's Cloud Run Deployer now supports log streaming from the deployed Cloud Run Service(s)/Job(s). NOTE: this requires installing the following `gcloud components`: `alpha`, `beta`, `cloud-run-proxy`, and `log-streaming`
- Supports deploying Cloud Run `Service` and `Job` objects

## Configuring Cloud Run

To deploy to Cloud Run, use the `cloudrun` type in the `deploy` section of `skaffold.yaml`.
Expand All @@ -27,6 +31,7 @@ The `cloudrun` type offers the following options:

{{< schema root="CloudRunDeploy" >}}


### Example

The following `deploy` section instructs Skaffold to deploy
Expand All @@ -39,3 +44,4 @@ Images listed to be deployed with the Cloud Run deployer must be present in Goog
Registry or Google Container Registry. If you are using Skaffold to build the images, ensure `push` is
set to true.
{{< /alert >}}