Categories:

Deploying Google Kubernetes Engine

In this task, we use the Google Cloud Console and Cloud Shell to deploy GKE clusters.

Use the Google Cloud Console to deploy a GKE cluster

  1. In the Google Cloud Console, on the Navigation menu (9a951fa6d60a98a5.png), click Kubernetes Engine > Clusters.
  1. Click Create cluster to begin creating a GKE cluster.
  2. Examine the console UI and the controls to change the cluster name, the cluster location, Kubernetes version, the number of nodes, and the node resources such as the machine type in the default node pool.

Clusters can be created across a region or in a single zone. A single zone is the default. When we deploy across a region the nodes are deployed to three separate zones and the total number of nodes deployed will be three times higher.

  1. Change the cluster name to standard-cluster-1 and zone to us-central1-a.
  2. Leave all the values at their defaults and click Create.

The cluster begins provisioning.

Note: we need to wait a few minutes for the cluster deployment to complete.

When provisioning is complete, the Kubernetes Engine > Clusters page looks like the screenshot:

Click the cluster name standard-cluster-1 to view the cluster details

  1. we can scroll down the page to view more details.
  2. Click the Storage and Nodes tabs under the cluster name (standard-cluster-1) at the top to view more of the cluster details.

Task 2. Modify GKE clusters

It is easy to modify many of the parameters of existing clusters using either the Google Cloud Console or Cloud Shell. In this task, we use the Google Cloud Console to modify the size of GKE clusters.

  1. In the Google Cloud Console, click Edit at the top of the details page for standard-cluster-1.
  2. Scroll down to the Node Pools section and click default pool.
  3. In the Google Cloud Console, click Edit at the top of the details page.
  4. In the Size section, change the number of nodes from 3 to 4.
  1. Scroll to the bottom and click Save.
  2. In the Google Cloud Console, on the Navigation menu (9a951fa6d60a98a5.png), click Kubernetes Engine > Clusters.

When the operation completes, the Kubernetes Engine > Clusters page should show that standard-cluster-1 now has four nodes.

Task 3. Deploy a sample workload

Here, using the Google Cloud console we will deploy a Pod running the nginx web server as a sample workload.

  1. In the Google Cloud Console, on the Navigation menuNavigation menu), click Kubernetes Engine > Workloads.
  2. Click Deploy to show the Create a deployment wizard.

Click Continue to accept the default container image, nginx.latest, which deploys a Pod with a single container running the latest version of nginx.

Scroll to the bottom of the window and click the Deploy button leaving the Configuration details at the defaults.

When the deployment completes our screen will refresh to show the details of ours new nginx deployment.

Task 4. View details about workloads in the Google Cloud Console.

In this task, we view details of ours GKE workloads directly in the Google Cloud Console.

  1. In the Google Cloud Console, on the Navigation menu (Navigation menu), click Kubernetes Engine > Workloads.

In the Google Cloud Console, on the Kubernetes Engine > Workloads page, click nginx-1. We may see Pods (3/3) as the default deployment will start with three pods but will scale back to 1 after a few minutes. we can continue with the lab.

In the Google Cloud Console, click the Details tab for the nginx-1 workload. The Details tab shows more details about the workload including the Pod specification, number and status of Pod replicas and details about the horizontal Pod autoscaler.

Click the Revision History tab. This displays a list of the revisions that have been made to this workload.

Click the Events tab. This tab lists events associated with this workload.

And then the YAML tab. This tab provides the complete YAML file that defines this components and full configuration of this sample workload.

Still in the Google Cloud Console’s Details tab for the nginx-1 workload, click the Overview tab, scroll down to the Managed Pods section and click the name of one of the Pods to view the details page for that Pod.

The default deployment will start with three pods but will scale back to 1 after a few minutes so we may need to refresh the Overview page to make sure we have a valid Pod to inspect.

The Pod Details page provides information on the Pod configuration and resource utilization and the node where the Pod is running.

In the Pod details page, we can click the Events and Logs tabs to view event details and links to container logs in Cloud Operations.

Click the YAML tab to view the detailed YAML file for the Pod configuration.