To check the Kubernetes version from Lens IDE, follow these simple steps:
Steps to Check Kubernetes Version in Lens:
- Open Lens IDE and connect to your cluster.
- Go to the "Cluster" view (usually selected by default).
- Look at the cluster's overview panel (typically on the left sidebar or main dashboard).
- 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):
- Open the Terminal inside Lens (if available).
- 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.