Skip to content

Commit f2544de

Browse files
authored
docs: Remove beta from gcloud run (#114)
* docs: Remove beta from gcloud run * Update README.md
1 parent 0f6e553 commit f2544de

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

docs/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ This directory contains advanced docs around the Functions Framework.
99
## TODO Docs
1010

1111
- TODO: Run Multiple Cloud Functions [#23](https://github.com/GoogleCloudPlatform/functions-framework-nodejs/issues/23)
12-
- TODO: Deploy to Cloud Run [#28](https://github.com/GoogleCloudPlatform/functions-framework-nodejs/pull/28)
1312

1413
## Debugging functions
1514

docs/docker.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Use the `docker` and `gcloud` CLIs to build and deploy a container to Cloud Run,
5050
```sh
5151
docker build -t gcr.io/$GOOGLE_CLOUD_PROJECT/helloworld .
5252
docker push gcr.io/$GOOGLE_CLOUD_PROJECT/helloworld
53-
gcloud beta run deploy helloworld --image gcr.io/$GOOGLE_CLOUD_PROJECT/helloworld --region us-central1
53+
gcloud run deploy helloworld --image gcr.io/$GOOGLE_CLOUD_PROJECT/helloworld --region us-central1
5454
```
5555

5656
If you want even more control over the environment, you can [deploy your container image to Cloud Run on GKE](https://cloud.google.com/run/docs/quickstarts/prebuilt-deploy-gke). With Cloud Run on GKE, you can run your function on a GKE cluster, which gives you additional control over the environment (including use of GPU-based instances, longer timeouts and more).

0 commit comments

Comments
 (0)