Kubernetes Engine: Qwik Start
LAB 5
Last updated
Was this helpful?
LAB 5
Last updated
Was this helpful?
(GKE) provides a managed environment for deploying, managing, and scaling your containerized applications using Google infrastructure. The Kubernetes Engine environment consists of multiple machines (specifically instances) grouped to form a . In this lab, you get hands-on practice with container creation and application deployment with GKE.
Select wisely! Enter the following command to set your zone!
Enter the following command to create a cluster.
Deploying a test application as shown below.
Creating a Kubernetes Service which lets us expose our application to external traffic:
--port
specifies the port that the container exposes.
type="LoadBalancer"
creates a Compute Engine load balancer for your container.
Inspect Service as shown below to get the public IP:
A consists of at least one cluster master machine and multiple worker machines called nodes. Nodes are that run the Kubernetes processes necessary to make them part of the cluster.