How to Deploy Kubernetes Dashboard | Step-by-Step Guide

9K views Oct 16, 2024
linuxtechi.com

In this video, we will learn how to deploy the Kubernetes Dashboard using Helm in a step-by-step guide. We will cover everything from installing Helm to accessing the dashboard and generating a token for secure login. Here's what we'll go through: 1. **Installing Helm:** - Download and install Helm with the following commands: curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 chmod +x get_helm.sh ./get_helm.sh helm --version 2. **Adding the Kubernetes Dashboard Helm Repository:** - Add the repository and verify it: helm repo add kubernetes-dashboard https://kubernetes.github.io/dashboard/ helm repo list 3. **Installing Kubernetes Dashboard Using Helm:** - Install it in the `kubernetes-dashboard` namespace: helm upgrade --install kubernetes-dashboard kubernetes-dashboard/kubernetes-dashboard --create-namespace --namespace kubernetes-dashboard kubectl get pods,svc -n kubernetes-dashboard 4. **Accessing the Dashboard:**

#Computer Science
  # Other