본문 바로가기

⭐ Kubernetes & EKS/k8s (쿠버네티스)

쿠버네티스 AutoComplete 기능 활성화

728x90
반응형

# kubectl Auto Complete 기능 활성화 하기

https://kubernetes.io/

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
반응형