728x90
kubectl 명령어의 자동 완성을 활성화하는 방법
kubectl 자동 완성 스크립트를 다운로드
echo 'source <(kubectl completion bash)' >>~/.bashrc
영구적으로 적용하려면 .bashrc 파일 또는 해당 사용자의 셸 설정 파일에 이 스크립트를 추가
source ~/.bashrc
kubectl [Tab][Tab]
$ kubectl
annotate (Update the annotations on a resource)
api-resources (Print the supported API resources on the server)
api-versions (Print the supported API versions on the server, in the form of "group/version")
apply (Apply a configuration to a resource by file name or stdin)
attach (Attach to a running container)
...
top (Display resource (CPU/memory) usage)
uncordon (Mark node as schedulable)
version (Print the client and server version information)
wait (Experimental: Wait for a specific condition on one or many resources)
참고URL
- Kubernetes Documentation : Install and Set Up kubectl on Linux
728x90
'리눅스' 카테고리의 다른 글
[draft] 쿠버네티스 서비스 유형 (0) | 2024.02.07 |
---|---|
쿠버네티스 레플리카셋(Replica Set) (0) | 2024.02.07 |
node-app 도커 이미지를 쿠버네티스로 배포하는 방법 (0) | 2024.02.07 |
Docker 자원 관리(프로세스, 이미지, 볼륨, 네트워크 정리하기) (0) | 2024.02.05 |
socat 명령어(proxy) (0) | 2024.02.05 |