goupaz / goupaz.com

Community driven open source accelerator
MIT License
219 stars 32 forks source link

{Example} Need advice for CKA exam #1

Open sakomws opened 5 years ago

sakomws commented 5 years ago

Please read below book: Official Guide of Kubernetes up and Running

sakows commented 5 years ago

https://www.youtube.com/channel/UCYNMCOYmvea2JyUdOtIv73Q/videos

sakomws commented 5 years ago

Create an NGINX Pod

kubectl run --generator=run-pod/v1 nginx --image=nginx

Generate POD Manifest YAML file (-o yaml). Don't create it(--dry-run)

kubectl run --generator=run-pod/v1 nginx --image=nginx --dry-run -o yaml

Create a deployment

kubectl run --generator=deployment/v1beta1 nginx --image=nginx

Generate Deployment YAML file (-o yaml). Don't create it(--dry-run)

kubectl run --generator=deployment/v1beta1 nginx --image=nginx --dry-run -o yaml

Generate Deployment YAML file (-o yaml). Don't create it(--dry-run) with 4 Replicas (--replicas=4)

kubectl run --generator=deployment/v1beta1 nginx --image=nginx --dry-run --replicas=4 -o yaml

Save it to a file - (If you need to modify or add some other details before actually creating it)

kubectl run --generator=deployment/v1beta1 nginx --image=nginx --dry-run --replicas=4 -o yaml > nginx-deployment.yaml
sakomws commented 5 years ago

https://medium.com/@kalpessh/my-experience-with-certified-kubernetes-administrator-cka-exam-and-few-tips-d287d4e9edbe

http://devnetstack.com/certified-kubernetes-administrator-exam-study-guide/

sakomws commented 5 years ago

https://www.avthart.com/posts/certified-kubernetes-exam-tips/

sakomws commented 5 years ago

https://docs.google.com/spreadsheets/d/10NltoF_6y3mBwUzQ4bcQLQfCE1BWSgUDcJXy-Qp2JEU/htmlview#gid=0 https://medium.zenika.com/kubernetes-certification-everything-you-need-to-know-to-pass-the-cka-c7ad831dd1ef https://github.com/twajr/ckad-prep-notes#detailed-review