Minikube Installation
K8s Setup Requirements
Install kubectl
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"chmod +x kubectlsudo mv kubectl /usr/bin/kubectl versionKubectl autocomplete
BASH
source <(kubectl completion bash) # setup autocomplete in bash into the current shell, bash-completion package should be installed first.
echo "source <(kubectl completion bash)" >> ~/.bashrc # add autocomplete permanently to your bash shell.ZSH
Install Kubernetes using Minikube
Start the Cluster
Enable Metrics Server
Worker Nodes Creation
Kubectl context and configuration
Last updated