helm completion自动补全命令

文章目录

转载请标明出处:
https://bigmaning.blog.csdn.net/article/details/120510343
本文出自:【BigManing的博客】

1、helm completion 的提示

根据helm completion -h的提示 ,核心脚本 就在前两句。


Generate autocompletions script for Helm for the specified shell (bash or zsh).

This command can generate shell autocompletions. e.g.

	$ helm completion bash

Can be sourced as such

	$ source <(helm completion bash)

Usage:
  helm completion SHELL [flags]

Flags:
  -h, --help   help for completion

Global Flags:
      --debug                           enable verbose output
      --home string                     location of your Helm config. Overrides $HELM_HOME (default "/root/.helm")
      --host string                     address of Tiller. Overrides $HELM_HOST
      --kube-context string             name of the kubeconfig context to use
      --kubeconfig string               absolute path to the kubeconfig file to use
      --tiller-connection-timeout int   the duration (in seconds) Helm will wait to establish a connection to tiller (default 300)
      --tiller-namespace string         namespace of Tiller (default "kube-system")

2、补全命令脚本

执行下面命令:

echo "source <(helm completion bash)" >>  ~/.bash_profile

执行完毕后,就可以使用tab自动补全命令了

上一篇:解决docker配置自动补全命令报错


下一篇:Kotlin协程实现原理