반응형
kubectl get
$ kubectl get pods,services,deployments -n <namespace>
파드, 서비스, 디플로이먼트 리스트 확인
$ kubectl get pods,services,deployments -n sangchul-nginx
NAME READY STATUS RESTARTS AGE
pod/mynginx 1/1 Running 0 14m
pod/nginx 1/1 Running 0 27m
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/dnginx NodePort 10.100.38.133 <none> 80:32156/TCP 6m26s
프로파일에 명령어 등록
###profile
$ vim ~/.bash_profile
...
kget() {
kubectl get pod,service,deployment -o wide -n ${@:-default}
}
###적용
$ source ~/.bash_profile
###kubeget 명령어 실행
$ kget
No resources found in defalut namespace.
$ kget nginx-namespace
No resources found in nginx-namespace namespace.
728x90
반응형
'리눅스' 카테고리의 다른 글
Kubernetes Dashboard를 설치하고 구성하는 방법 (0) | 2020.11.06 |
---|---|
[kubernetes] 웹 서버(nginx) 배포(deployment) (0) | 2020.11.05 |
kubernetes 클러스터 내 모든 네임스페이스의 파드 상태 확인 (0) | 2020.11.04 |
[kubernetes] Jenkins 설치 방법 (0) | 2020.11.03 |
[kubernetes] MetalLB 설치 (0) | 2020.11.03 |