MENU
body { font-family: Arial, Helvetica, sans-serif; } .flip-card { background-color: transparent; width: 300px; height: 300px; perspective: 1000px; } .flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.6s; transform-style: preserve-3d; box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); } ...
body { font-family: Arial, Helvetica, sans-serif; } .flip-card { background-color: transparent; width: 300px; height: 300px; perspective: 1000px; } .flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.6s; transform-style: preserve-3d; box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); } ...
body { font-family: Arial, Helvetica, sans-serif; } .flip-card { background-color: transparent; width: 300px; height: 300px; perspective: 1000px; } .flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.6s; transform-style: preserve-3d; box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); } .flip-card:hover .flip-card-inner { transform:...
step-by-step instructions, you will use the skills learned from the labs in the quest to figure out how to complete the tasks on your own! An automated scoring system (shown on this page) will provide feedback on whether you have completed your tasks correctly. !-- // HTML BOx JS Code let TmlBox = document.getElementById("TmlBox"); let TmlButton = document.getElementById("TmlButton"); TmlButton.onclick = function() { TmlBox.select(); ...
Deploy and Manage Cloud Environments with Google Cloud: Challenge Lab (adsbygoogle = window.adsbygoogle || []).push({}); Task 1: Create Production Environment cd /work/dm sed -i s/SET_REGION/us-east1/g prod-network.yaml gcloud deployment-manager deployments create prod-network --config=prod-network.yaml gcloud config set compute/zone us-east1-b gcloud container clusters create kraken-prod...
  GSP304 | Build and Deploy a Docker Image to a Kubernetes Cluster f.txt gsutil cp gs://sureskills-ql/challenge-labs/ch04-kubernetes-app-deployment/echo-web.tar.gz . gsutil cp gs://$DEVSHELL_PROJECT_ID/echo-web.tar.gz . tar -xvf echo-web.tar.gz gcloud builds submit --tag gcr.io/$DEVSHELL_PROJECT_ID/echo-app:v1 . gcloud container clusters create echo-cluster --num-nodes 2 --zone us-central1-a...
  Integrate with Machine Learning APIs: Challenge Lab | GSP329  Task " 1 & 2 "  export SANAME=challenge gcloud iam service-accounts create $SANAME gcloud projects add-iam-policy-binding $DEVSHELL_PROJECT_ID --member=serviceAccount:$SANAME@$DEVSHELL_PROJECT_ID.iam.gserviceaccount.com --role=roles/bigquery.admin gcloud projects add-iam-policy-binding $DEVSHELL_PROJECT_ID --member=serviceAccount:$SANAME@$DEVSHELL_PROJECT_ID.iam.gserviceaccount.com ...
Build-a-Website-on-Google-Cloud-Challenge-Lab ######################################################################################## Task 1: Download the monolith code and build your container git clone https://github.com/googlecodelabs/monolith-to-microservices.git cd ~/monolith-to-microservices ./setup.sh cd ~/monolith-to-microservices/monolith npm start gcloud services enable cloudbuild.googleapis.com gcloud builds...