Click Activate Cloud Shell at the top of the Google Cloud console. Set the default zone and project configuration: gcloud config set compute/zone us-central1-f Create a GKE cluster Run the following command …
Click Activate Cloud Shell at the top of the Google Cloud console. Set Compute Zone gcloud config set compute/zone us-central1-a Create a New Cluster gcloud container clusters create hello-world You will use …
Examine a table BigQuery offers a number of sample tables that you can run queries against. In this lab, you’ll run queries against the shakespeare table, which contains an entry for every word in …
Open BigQuery The BigQuery console provides an interface to query tables, including public datasets offered by BigQuery. In the Google Cloud Console, select Navigation menu > BigQuery: The Welcome to BigQuery in the Cloud Console message box …
The goal is to be able to commit code and have it trigger the pipeline which will in turn deploy the website. Your journey will be divided into two parts. …
Start a new session in Cloud Shell and run the following command to create a new Cloud Source Repository named REPO_DEMO: gcloud source repos create REPO_DEMO Clone the contents of your …
Initial Setup Set the zone in gcloud: gcloud config set compute/zone us-west1-b Then Authorize Cloud Shell. Set the project ID: export PROJECT_ID=$(gcloud info –format=’value(config.project)’) Deploy a standard GKE cluster, which …
Create bucket and download application files Create a GCS bucket export PROJECT_ID=$(gcloud info –format=’value(config.project)’) gsutil mb gs://$PROJECT_ID Copy application files from Google managed project bucket gsutil cp -r gs://spls/gsp087/* gs://$PROJECT_ID …
Create a Compute Engine instance In the Cloud Console, select Navigation menu > Compute Engine > VM instances, then click Create Instance. Set the following fields: Name: my-opencensus-demo Region: us-west1 (Iowa) Zone: us-west1-b Series: N1 Machine type: n1-standard-1 (1vCPU, 3.75 …
Create a Compute Engine instance In the Cloud Console dashboard, go to Navigation menu > Compute Engine > VM instances, then click Create instance. Fill in the fields as follows, leaving all other fields at the …
Create and populate a Cloud Storage bucket In the Cloud Console, from the Navigation menu click Cloud Storage > Browser. Click Create bucket. Specify values for the following fields, leave all others at their defaults: Name: …
Configure the Environment Enable Cloud Run API gcloud services enable run.googleapis.com Set the compute and run regions gcloud config set compute/region us-central1 gcloud config set run/region us-central1 Create a LOCATION …
Set the default region and zone for all resources In Cloud Shell, set the default zone: gcloud config set compute/zone us-central1-a Set the default region: gcloud config set compute/region us-central …
For this lab, you will set up two VPCs and add a cloud HA-VPN gateway in each. You will run two tunnels from each VPN gateway to demonstrate the HA-VPN …
Configure a custom network with VPC Flow Logs Create the custom network In the Console, navigate to Navigation menu > VPC network > VPC networks. Click Create VPC Network. Set the following values, leave all …
VPC Network Peering setup In this lab you have been provisioned 2 projects, the first project as a Project A and second as Project B. Project-A: Go back to first …
In Cloud Shell, use the following gcloud command to create a custom mode network called labnet: gcloud compute networks create labnet –subnet-mode=custom With this command you’re doing the following: gcloud invokes the Cloud SDK gcloud command …
Explore the default network View the subnets The default network has a subnet in each Google Cloud region. In the Console, navigate to Navigation menu () > VPC network > VPC networks. Notice the default network with its subnets. …