Skip to content

meteatamel/cloudrun-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a155eae · Nov 11, 2022

History

82 Commits
Dec 4, 2019
Feb 2, 2022
Sep 24, 2020
Nov 11, 2022
Sep 29, 2021
May 26, 2022
Nov 11, 2022
Dec 4, 2019
Nov 13, 2019
Oct 17, 2019
May 24, 2022

Repository files navigation

Cloud Run Tutorial

Serverless on Google Cloud

Cloud Run is a managed serverless platform that enables you to run stateless containers invocable via HTTP requests on Google Cloud.

Cloud Run is built from open-source Knative, letting you choose to run your containers either fully managed with Cloud Run, or in your Google Kubernetes Engine cluster with Cloud Run on Anthos, or use Knative on any Kubernetes cluster running anywhere.

Slides

There's a presentation that accompanies the tutorial.

Serverless with Cloud Run

Setup

Cloud Run is a fully managed service, so there's no setup other than enabling Cloud Run and Cloud Build.

Cloud Run for Anthos runs on GKE on Anthos platform.

Setup your project id and number that we'll need throughout samples:

export PROJECT_ID="$(gcloud config get-value core/project)"
export PROJECT_NUMBER="$(gcloud projects list --filter=${PROJECT_ID} --format='value(PROJECT_NUMBER)')"

Enable Cloud Build and Cloud Run:

gcloud services enable --project ${PROJECT_ID} \
    cloudbuild.googleapis.com \
    run.googleapis.com

Samples

Cloud Run Serving

Cloud Run Eventing

Other


This is not an official Google product.