我讨厌手工编写所有kubectl
和kubeadm
命令。有什么方法可以对这些命令启用自动完成功能吗?
答案 0 :(得分:3)
是的,记录在这里:Enabling shell autocompletion。
答案 1 :(得分:0)
# Execut these commands
$ echo "source <(kubectl completion bash)" >> ~/.bashrc
$ echo "source <(kubeadm completion bash)" >> ~/.bashrc
# Reaload bash without logging out
$ source ~/.bashrc