From cafde0c56e1d508fcfb78019a7c9476ac1064e5a Mon Sep 17 00:00:00 2001 From: Aaron Prindle Date: Thu, 19 Jan 2023 06:57:45 +0000 Subject: [PATCH] docs: update cloudrun docs to include log streaming and Job support --- .../content/en/docs/pipeline-stages/deployers/cloudrun.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs-v2/content/en/docs/pipeline-stages/deployers/cloudrun.md b/docs-v2/content/en/docs/pipeline-stages/deployers/cloudrun.md index 13d791a8138..5907ea3d05c 100644 --- a/docs-v2/content/en/docs/pipeline-stages/deployers/cloudrun.md +++ b/docs-v2/content/en/docs/pipeline-stages/deployers/cloudrun.md @@ -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`. @@ -27,6 +31,7 @@ The `cloudrun` type offers the following options: {{< schema root="CloudRunDeploy" >}} + ### Example The following `deploy` section instructs Skaffold to deploy @@ -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 >}} +