CKA 팁
in Kubernetes
쿠버네티스 관리자 자격증 팁입니다.
시험 시작하자마자 bashrc, vimrc 수정
# file: ".bashrc"
alias k='kubectl'
source <(k completion bash)
complete -F __start_kubectl k
# file: ".vimrc"
set et
set ts=2
set sw=2
set nu
오브젝트 생성 시 커맨드 활용
Pod 생성
kubectl run nginx --image=nginx
Pod YAML 파일 생성
kubectl run nginx --image=nginx --dry-run=client -o yaml
Deployment 생성
kubectl create deployment nginx --image=nginx
Deployment YAML 파일 생성
kubectl create deployment nginx --image=nginx --replicas=4 --dry-run=client -o yaml > nginx-deployment.yaml