728x90
반응형
# kubectl Auto Complete 기능 활성화 하기
cheat sheet 검색
Auto Complete 내용 확인
# 단축키 활용
source <(kubectl completion bash) # setup autocomplete in bash into the current shell, bash-completion package should be installed first.
echo "source <(kubectl completion bash)" >> ~/.bashrc # add autocomplete permanently to your bash shell.
alias k=kubectl
complete -F __start_kubectl k
기존 : kubectl get pod
변경 : k get pod
# cka 시험 정보
시험관련 정보 : https://esevan.tistory.com/12
udemy url : https://www.udemy.com/course/certified-kubernetes-administrator-with-practice-tests/
728x90
반응형
'⭐ Kubernetes & EKS > k8s (쿠버네티스)' 카테고리의 다른 글
pod 삭제 명령어 (0) | 2022.03.04 |
---|---|
쿠버네티스 YAML configuration 파일 설명 및 YAML 문법 검사 사이트 (0) | 2021.12.28 |
Hpa 삭제 후 재 생성 (0) | 2021.11.10 |
k8s 새로운 namespace를 생성하고, nginx deply 후에 hpa를 활성화 해보자 (0) | 2021.11.09 |
k8s 쿠버네티스 기본 namespace 변경하기 (0) | 2021.11.09 |