Absolutely! To interact with your Minikube Kubernetes cluster, you'll need `kubectl`. Here's how you can **install `kubectl` the right way** on Ubuntu and make sure it's ready to go with Minikube: --- ## ✅ **Install `kubectl` on Ubuntu** ### 🧩 Step-by-Step: ```bash # Step 1: Download the latest kubectl binary curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" # Step 2: Make it executable chmod +x kubectl # Step 3: Move to your custom tools directory (example: $HOME/my-tools) mv kubectl $HOME/my-tools/ # Step 4: Add to PATH (if not already) echo 'export PATH=$HOME/my-tools:$PATH' >> ~/.bashrc source ~/.bashrc ``` --- ## ✅ **Test the Installation** ```bash kubectl version --client ``` You should see output like: ``` Client Version: version.Info{Major:"1", Minor:"XX", ...} ``` --- ## ✅ **Connect `kubectl` to Minikube** Once Minikube is running, it sets up the `kubectl` config automatically using: ```bash minikube start ``` If for some reason it's not working, you can force it: ```bash kubectl config use-context minikube ``` Then test: ```bash kubectl get nodes ``` You should see your Minikube node listed as `Ready`. --- Let me know if you want to install `kubectl` globally, or keep everything in a sandboxed environment like you did with Minikube.