PowerShellのプロンプトにKubernetesのカレントコンテキストを出力する
1657 ワード
以下のようなスクリプトを profile.ps1 というファイル名で保存して
C:\Users\<ユーザー名>\Documents\WindowsPowerShell\
に配置する。
(PowerShell Coreの場合はインストールディレクトリ直下)
profile.ps1
function prompt() {
$current_dir = Split-Path -Leaf (Get-Location)
$context = kubectl config current-context
"[$current_dir]($context) > "
}
この例ではカレントディレクトリをあわせて表示しているが、
kubectl config current-context
の結果が利用できればよいのであとはお好みで。
簡単ですが以上です。
Author And Source
この問題について(PowerShellのプロンプトにKubernetesのカレントコンテキストを出力する), 我々は、より多くの情報をここで見つけました https://qiita.com/hayao_k/items/489ea65da864fa70e18f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .