PowerShell 프롬프트에 Kubernetes의 현재 컨텍스트 출력

다음과 같은 스크립트를 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 의 결과가 유효하면 좋기 때문에 나머지는 좋아한다.



쉽지만 이상입니다.

좋은 웹페이지 즐겨찾기