You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

274 B

kubectl 命令自动填充配置

安装依赖

yum install -y bash-completion

生成自动完成配置

kubectl completion bash >.kubectl

添加配置到profile

cat <<EOF >>~/.bashrc
if [ -f ~/.kubectl ];then
    . ~/.kubectl
fi
EOF