CKA 시험을 어떻게 통과했습니까?
3427 단어 linuxkubernetescloudnative
준비
연습, 연습 또 연습
시험 팁
alias k='eval kubectl'
alias kf='kubectl create -f'
alias kg='kubectl get'
export do='--dry-run=client -o yaml'
export ex='--help | sed -n "/Examples:/,/^[A-Z]/p"' # eval in alias of k is important to execute ex
alias kc='kubectl config set-context '
이렇게 하면 많은 시간을 절약할 수 있습니다. 위의 명령을 아래와 같이 사용할 수 있습니다.
# To create resource from file as pod.yaml
kf pod.yaml
# To show all service in default namespace
kg svc
# Create yaml file before creating resource
kubectl create deployment my-deploy --replicas 2 --image nginx $do > mydeploy.yaml
# See examples from help
k create role $ex
여기 내 인증서입니다
시험에 행운을 빕니다.
Reference
이 문제에 관하여(CKA 시험을 어떻게 통과했습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/arunpal_/how-i-cleared-cka-exam-in-2022--4i8n텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)