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 chmod +x ./ helm --version 2. **Adding the Kubernetes Dashboard Helm Repository:** - Add the repository and verify it: helm repo add kubernetes-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:** - Expose the dashboard using a NodePort: kubectl expose deployment kubernetes-dashboard-kong --name k8s-dash-svc --type NodePort --port 443 --target-port 8443 -n kubernetes-dashboard 5. **Generating a Token for Login:** - Create a service account and generate a token: apiVersion: v1 kind: ServiceAccount metadata: name: admin-user namespace: kube-system --- apiVersion: kind: ClusterRoleBinding metadata: name: admin-user roleRef: apiGroup: kind: ClusterRole name: cluster-admin subjects: - kind: ServiceAccount name: admin-user namespace: kube-system - Generate the token: kubectl create token admin-user -n kube-system 6. **Exploring the Kubernetes Dashboard Interface:** - Learn how to manage your cluster, workloads, services, and configurations. 📌 **Timestamps:** - 00:00 Introduction - 01:06 Installing Helm - 01:46 Adding Kubernetes Dashboard Helm Repository - 02:22 Installing Kubernetes Dashboard - 04:42 Accessing the Dashboard - 05:30 Generating a Token for Login - 07:56 Exploring the Dashboard #Kubernetes #dashboard #howto If you found this video helpful, don't forget to like, subscribe, and hit the bell icon for more Kubernetes tutorials! Web Site : YouTube Channel : @linuxtechi9979 ###################################### Thank you for Watching!! ######################################











