Skip to main content
Before provisioning a Linode Kubernetes Engine (LKE) cluster, it’s helpful to familiarize yourself with the LKE dashboard. Understanding this interface clarifies the resources LKE manages on your behalf.
The image shows a Kubernetes cluster management interface with details about a cluster named "kodekloud01," including its version, resources, and node pool status. Two nodes are listed, both running with their respective IP addresses.
Exploring the LKE dashboard first gives you context on what happens behind the scenes when you later create and manage clusters.

Cluster Details

API Endpoint

LKE exposes your cluster’s API endpoint publicly. If you query it without valid credentials, you’ll see a 403 Forbidden error:

Kubeconfig File

Download your cluster’s Kubeconfig from the dashboard and save it to ~/.kube/config (or merge with your existing file). It includes:
  • Certificate Authority data
  • API server URL
  • User credentials (token)
  • Context settings
If your Kubeconfig is ever compromised, regenerate it immediately to revoke the old credentials.
The image shows a confirmation dialog box asking if the user wants to reset the cluster Kubeconfig, warning that this action will delete and regenerate the file and cannot be undone. There are options to "Cancel" or "Reset Kubeconfig."

Kubernetes Dashboard & Node Pools

In the LKE dashboard, you’ll also find quick links for:
  • Accessing the Kubernetes Dashboard
  • Managing cluster tags
  • Deleting the entire cluster
The Node Pools section lists each worker node, showing its IP address and status. You can:
  • Recycle individual nodes or all nodes at once
  • Enable autoscaling for dynamic scaling
  • Resize node plans
  • Delete individual nodes or entire node pools
  • Create additional node pools

Watch Video