微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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自动补全命令了

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐