클라우드 엔지니어 꿈나무
kubernetes(K8S) bash 사용 설정 - Centos7 본문
kubernetes 사용 시, 자동 완성 기능을 쓸 수 있는 bash 사용
방법 1.
<참고>
https://kubernetes.io/docs/reference/kubectl/cheatsheet/
# source <(kubectl completion bash)
# echo "source <(kubectl completion bash)" >> ~/.bashrc
방법 2.
# yum install -y bash-completion
# kubectl completion bash > /etc/bash_completion.d/kubectl
하지만 나의 경우, 위의 명령어를 진행한 후, 자동 완성 기능을 사용했을 때 하기와 같은 오류가 떠 추가적인 설정을 함.
# vi ~/.bashrc
하기 두 줄 추가 후 reboot
재부팅 후, kubectl get all --all-namespaces 를 타이핑 하려면 1번과 같이 입력하면 됨.
tab을 타이핑하면 2번의 형식으로 표시
'kubernetes' 카테고리의 다른 글
Kubernetes(K8S) 따배쿠 동작 원리 - Centos7 (1) | 2023.10.09 |
---|---|
Kubernetes(K8S) 따배쿠 kubectl command / pod 생성하기 (0) | 2023.10.09 |
Kubernetes(K8S): POD 및 Service 구성 (0) | 2023.10.05 |
Kubernetes(K8s) Helm + Prometheus stack(Prometheus + Grafana 설치 - Centos7 (0) | 2023.09.23 |
Kubernetes Pod Networking - Centos7 (0) | 2023.09.22 |