Recent Posts
Install Helm
1. Website Releases
2.Installing sudo su - mkdir /opt/helm -p cd /opt/helm wget https://get.helm.sh/helm-v3.17.3-linux-amd64.tar.gz tar -zxvf helm-v3.17.3-linux-amd64.tar.gz ls -la mv /opt/helm/linux-amd64/helm /usr/local/bin/helm helm --version
read more
Install Headlamp Kubernetes UI
1. Websites Headlamp
In cluster
GitHub
2. Installation Run these commands:
Install Headlamp in your cluster using Helm. Run the following: Run these commands:
sudo su - helm repo add headlamp https://kubernetes-sigs.github.io/headlamp/ helm install my-headlamp headlamp/headlamp --namespace kube-system
read more
Install OpenLens Kubernetes IDE
1. Websites GitHub
2. Installation Run these commands
mkdir /opt/openlens cd /opt/openlens wget https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.amd64.deb sudo apt install ./OpenLens-6.5.2-366.amd64.deb which openlens # Launching OpenLens openlens 3.Add a Kubernetes Cluster Option 1: Auto-Detect from ~/.kube/config OpenLens automatically loads any cluster contexts found in ~/.kube/config. You’ll see them listed in the left sidebar under “Catalog” or “Clusters”. Option 2: Manually Add a Cluster Click + Add Cluster Choose Browse or paste a kubeconfig Name the cluster (optional) Click Add Cluster ✅ You can connect to any k3s, minikube, AKS, EKS, GKE, etc.
read more