Create and Manage Cloud Resources
Task 1: Create a project jumphost instance
You will use this instance to perform maintenance for the project.
Requirements:
Name the instance nucleus-jumphost.
Use an f1-micro machine type.
Use the default image type (Debian Linux).
gcloud compute instances create nucleus-jumphost \
--machine-type f1-micro \
--zone us-east1-bTask 2: Create a Kubernetes service cluster
The team is building an application that will use a service running on Kubernetes.
You need to:
Create a cluster (in the us-east1-b zone) to host the service.
gcloud container clusters create service-cluster \
--zone us-east1-bgcloud container clusters get-credentials service-cluster \
--zone us-east1-bUse the Docker container hello-app (
gcr.io/google-samples/hello-app:2.0) as a placeholder; the team will replace the container with their own work later.
kubectl create deployment hello-server --image=gcr.io/google-samples/hello-app:2.0Expose the app on port 8080.
kubectl expose deployment hello-server --type=LoadBalancer --port 8080Task 3: Set up an HTTP load balancer
You will serve the site via nginx web servers, but you want to ensure that the environment is fault-tolerant. Create an HTTP load balancer with a managed instance group of 2 nginx web servers. Use the following code to configure the web servers; the team will replace this with their own configuration later.
cat << EOF > startup.sh
#! /bin/bash
apt-get update
apt-get install -y nginx
service nginx start
sed -i -- 's/nginx/Google Cloud Platform - '"\$HOSTNAME"'/' /var/www/html/index.nginx-debian.html
EOFYou need to:
Create an instance template.
gcloud compute instance-templates create nginx-template \
--metadata-from-file startup-script=startup.shCreate a target pool.
gcloud compute target-pools create nginx-poolCreate a managed instance group.
gcloud compute instance-groups managed create nginx-group \
--base-instance-name nginx \
--size 2 \
--template nginx-template \
--target-pool nginx-pool gcloud compute instances list
Create a firewall rule to allow traffic (80/tcp).
gcloud compute firewall-rules create www-firewall \
--allow tcp:80 gcloud compute forwarding-rules create nginx-lb \
--region us-east1 \
--ports=80 \
--target-pool nginx-poolgcloud compute forwarding-rules list
Create a health check.
gcloud compute http-health-checks create http-basic-checkgcloud compute instance-groups managed \
set-named-ports nginx-group \
--named-ports http:80Create a backend service, and attach the managed instance group.
gcloud compute backend-services create nginx-backend \
--protocol HTTP --http-health-checks http-basic-check --globalgcloud compute backend-services add-backend nginx-backend \
--instance-group nginx-group \
--instance-group-zone us-east1-b \
--globalCreate a URL map, and target the HTTP proxy to route requests to your URL map.
gcloud compute url-maps create web-map \
--default-service nginx-backend gcloud compute target-http-proxies create http-lb-proxy \
--url-map web-mapCreate a forwarding rule.
gcloud compute forwarding-rules create http-content-rule\
--global \
--target-http-proxy http-lb-proxy \
--ports 80 gcloud compute forwarding-rules list
Last updated
Was this helpful?