Menu
Technologie Certifications

How i got CKAD Certification 2021 in 3 weeks

Arabic English French Japanese

CKAD Certified Kubernetes Application Developer by LinuxFoundation

Summary

Foreword

Today I am celebrating my 31st certification, after having passed the CKAD: Certified Kubernetes Application Developer certification issued by The Linux Foundation.

This time too, I would like to share my feedback, my mistakes when passing certification, some tips to follow and some important points in preparing certification.

CKAD: Certified Kubernetes Application Developer certification. 2021. Abdelahad SATOUR


General information about the certification

Type of examMachine labs, Documents are allowed:
(https://kubernetes.io and https://github.com/kubernetes/kubernetes only)
Exam portal: http://psionline.com
Voucher price300 USD incl
Number of questions17 to 19 labs
Types of questionsPractical labs
Available languagesEnglish, Japanese, Chinese
Duration of exam2 hours
Score to pass66%
Voucher validity1 year
Rescheduling policyYou can postpone or advance it as much as you want, even 1 hour before the exam time.
RetakeIf you fail certification at the first pass,
you are entitled to a new take free of charge.
DifficultyMedium.
VersionCurrently v1.20. The CKAD exam environment will be aligned with the most recent
minor version of K8 within 4-8 weeks of the K8 release date.


The purpose of certification

The Certified Kubernetes Application Developer (CKAD) certification is designed to ensure that certification holders have the skills, knowledge and competencies necessary to assume the responsibilities of Kubernetes application developers. A Kubernetes certified application developer can define application resources and use basic primitives to build, monitor and troubleshoot scalable applications and tools in Kubernetes.


The difference between CKAD, CKA, CKS

  • CKAD (Certified Kubernetes Application Developer): CKAD is intended for developers who will use Kubernetes as an orchestrator in their development projects and cloud engineers.
  • CKA (Certified Kubernetes Administrator): CKA is intended for DeVops, Engineers and Cloud Architects and Architects. CKA certification is much more difficult than CKAD.
  • CKS (Certified Kubernetes Security Specialist): CKS is intended for security experts, DevOps experts, Cloud Architects, Security Architects. CKS is a very difficult certification, and it takes a lot of time to be prepared.

The content of the certification:

  • Core Concepts (13%)
  • Configuration (18 %)
  • Multi-Container Pods (10%)
  • Observability (18%)
  • Pod Design (20%)
  • Services & Networking (13%)
  • State Persistence (8%)

Candidate Handbook: https://docs.linuxfoundation.org/tc-docs/certification/lf-candidate-handbook
Frequently Asked Questions: https://docs.linuxfoundation.org/tc-docs/certification/faq-cka-ckad-cks


Difficulties of the exam

  • The time: 2 hours are very short to do all the labs. In general, certifications where documents are allowed tend to be more difficult than MCQ certification.
  • YAML files: Files are long, a small training error on a line can take time to fix it (luckily there is a solution for that).


Practical exercises to pass necessarily before the exam

Means of preparation that I advise

CKAD Certification Mumshad Mannambeth Udemy

This course contains: 26 practical labs, 2 lightings labs, 6 mini-mock and 2 mock exams. And are all with the solution in videos.

CKAD Oreilly Sander Van Vugt


My first tips for successful certification on the first attempt and with a 100% score

During the exam:

  • Resist the urge to answer questions sequentially.
  • I strongly recommend answering questions based on their weight. All questions have their weight displayed. Some issues with a lower weight will take longer. So it is better to go back to these questions once you have finished the higher weight issues.
  • Use the exam notepad.
  • You should know that you only have the right to open one tab of the maximum browser! Therefore, it is not possible to open several links at once.

During prepration:

source <(kubectl completion bash)
alias k=kubectl
complete -F __start_kubectl k
kubectl auto-completion
  • K8s offers two ways to define/manage configuration:
    • a] Imperative — Manage K8s object using CLI ( imperative commands)
    • b] Declarative — By defining K8s objects in yaml file.

Use the Imperative style as much as possible, here is your reference:
https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands

https://medium.com/better-programming/kubernetes-tips-create-pods-with-imperative-commands-in-1-18-62ea6e1ceb32

:set nu # afficher les numéros de lignes
:set nu! # désactiver l'affichage des numéros de lignes
  • kubectl explain is your magic secret:
    This command simplified the task for me during the exam to have the YAML syntax of a resource element.
  • kubectl explain pods.spec.tolerations –recursive
kubectl explain recursive
  • Use shortnames to avoid writing a very large command line that becomes difficult to analyze. The kubectl api-resources command displays all shortnames:
kubectl shortname


How many days did the preparation take me?

Response: 2 weeks and 4 days (2 hours per day).
The duration of preparation is very personal and depends above all on the experience of each one with Kubernetes.

  • My context:
    • I had previous experience with Rancher v1.6 and Rancher v2.1.
    • I used Docker swarm when it was unstable.
    • I had a basic experience with Openshift 3.1.
    • I also used Spinnaker 1.19 and it was a hell of an experience as I lost 3 weeks in the encryption due to its instability and lack of documentation.
    • I was good at Docker

I wish you good luck!


No Comments

    Leave a Reply