Search⌘ K
AI Features

Running an Application on Kubernetes

Explore how to deploy an application on a Kubernetes cluster using pod and service configurations. Learn to check pod status, obtain external service IPs, and manage application lifecycle tasks like scaling and rolling updates. This lesson provides hands-on experience running and maintaining applications on Kubernetes.

We'll cover the following...

Walkthrough

List the nodes in your K8s cluster.

$ kubectl get nodes
NAME STATUS ROLES AGE VERSION
k3s-qsk...d5idm Ready <none> 5m v1.28.2+k3s1
k3s-qsk...jhnpn Ready <none> 5m v1.28.2+k3s1
k3s-qsk...um2r2 Ready <none> 5m v1.28.2+k3s1
List all Nodes

Run the following from the root of the GitHub repo. If you’re ...