Tools and Configuration
Tools Required
Here are the Download Links for Various Tools
Enable Autocomplete
source <(kubectl completion bash)
echo "source <(kubectl completion bash)" >> ~/.bashrc
Bash Shell
Every time you login, ensure you run the below command to move to BASH shell
bash
Never Run any command as ROOT
Always Use SUDO if required.
Access K8s Cluster from a Remote Machine
If you are using your Laptop and If Kubernetes Cluster is running on a remote server.
Download the config file from the Kubernetes Cluster and Configure Kubectl on your Local Laptop.
If you are using Public IP to access the machine, then you need to use the following configuration
alias kubectl='kubectl --insecure-skip-tls-verify'
Last updated
Was this helpful?