PowerShell 프롬프트에 Kubernetes의 현재 컨텍스트 출력
1510 단어 PowerShellkubectlkubernetes
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
의 결과가 유효하면 좋기 때문에 나머지는 좋아한다.쉽지만 이상입니다.
Reference
이 문제에 관하여(PowerShell 프롬프트에 Kubernetes의 현재 컨텍스트 출력), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/hayao_k/items/489ea65da864fa70e18f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)