How to Check Kubernetes Version in Lens IDE

mahabub.devs3
Mahabubur Rahman
Published on Mar, 26 2025 1 min read 0 comments
Text Image

To check the Kubernetes version from Lens IDE, follow these simple steps:

Steps to Check Kubernetes Version in Lens:

  1. Open Lens IDE and connect to your cluster.
  2. Go to the "Cluster" view (usually selected by default).
  3. Look at the cluster's overview panel (typically on the left sidebar or main dashboard).
  4. Find the Kubernetes version listed under:
    • Cluster Name (top-left or in cluster details)
    • Cluster Metrics / Status section
    • Nodes section (shows the Kubernetes version of each node)

Alternative Method (via Kubectl in Lens Terminal):

  1. Open the Terminal inside Lens (if available).
  2. Run:
kubectl version --short

OR

kubectl get nodes -o wide

(This will show the Kubernetes version of each node.)

Note:

  • If Lens doesn't display the version directly, use the integrated terminal with kubectl.
  • The version displayed is the control plane (API server) version.

 

Happy Coding.

0 Comments