2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

kubernetesを使う人のための便利なalias

Last updated at Posted at 2020-01-04

はじめに

こんにちは、インフラエンジニアです。
普段はKubernetes(GKE)をよく使っています。

なぜ書いたか

K8sをCLIで操作する際にKubectlというコマンドがあるのですが
タイプするのが面倒くさい!長い!
なので、便利なエイリアスを設定したので記事にしました。

本題

Macの場合

$ vim ~/.bash_profile

以下の二行を追加して保存

bash_profile
alias k='kubectl'
alias kg='kubectl get'
$ source ~/.bash_profile

k で kubectl を実行できるようになります。
簡単ですね。

参考文献(なければ不要)

Qiitaで簡単に記事を書くためのフォーマット

最後に

最後まで読んでいただきありがとうございます!

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?