LoginSignup
0
0

More than 3 years have passed since last update.

Macでkubectlの入力補完をできるようにする

Last updated at Posted at 2020-02-21

Macでkubectlの入力補完をできるようにする方法について記載
(bash completionを導入する)

1.まず、bashのバージョン確認


$ bash --version

2.bashのバージョンが3.2系の場合


$ brew install bash-completion
$ echo '[ -f $(brew --prefix)/etc/bash_completion ] && . $(brew --prefix)/etc/bash_completion' >> ~/.bashrc

2.bashのバージョンが4.1以上の場合


$ brew install bash-completion@2
$ echo '[ -f $(brew --prefix)/share/bash-completion/bash_completion ] && . $(brew --prefix)/share/bash-completion/bash_completion' >> ~/.bashrc

以上

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0