Certified Kubernetes Administrator (CKA)

4 minute read

Certified Kubernetes Application Developer


This post describes my experience and recommendations for tackling the Certified Kubernetes Administrator (CKA) exam by The Linux Foundation.

The exam

The exam is 100% practical with about 20 questions that must be solved in 2 hours, supervised by a proctor who verifies that you are alone during the exam, and that you comply with all rules. In my case, for this exam the proctored asked me to show a 360° view of the room, and to show him below my desk. He also asked me from time to time to show him my hands.

First off, this exam goes beyond the CKAD exam in terms of complexity. You will face more difficult challenges, like fixing a broken cluster or detecting why a service is not running properly and make it work again.

In my case there were few easy questions and I’d say that most of them were medium to difficult, therefore be prepared! You you must manage your time very well. Questions will be shown in a panel on the left side and you will have access to a terminal where you have to execute the commands to solve them.

Exam UI


There will be questions to create resources, others to identify and solve problems (troubleshooting & fixing) . You can copy and paste from the instructions, in addition to having access to a place for notes, for example to keep track of pending questions.

You will be able to consult the Kubernetes documentation from these sites https://kubernetes.io/docs/, https://github.com/kubernetes/, https://kubernetes.io/blog/, opening one and only one additional tab to the exam.

You can take the exam with Chrome, so yo can access the sites mentioned above from your bookmarks (yes, it’s allowed)

My experience

With this exam I didn’t face any trouble at all (check my experience with CKAD exam). I didn’t have a clock or progress bar to keep track of the time in the examination interface, but this time I was conscious about timing. The proctor only interrupted me 15 minutes before the end of the exam to let me know it was almost over.

I went with a lot of expectations, but this time regarding the exam’s difficulty.

How to prepare?

There are several free and other paid resources, all valid to prepare, but practical experience is essential. I list some of them:

Books

Online courses

  • Kubernetes Certified Application Developer (CKAD) with Tests (Mumshad Mannambeth): This course is very well designed and explains in detail and with many animations the concepts necessary to learn how to deploy applications in a Kubernetes cluster. Additionally, it gives access to a platform named Kloud Kode created with Teachable and with Katacoda environments designed for each topic covered, two exam-type labs (with a high degree of difficulty) and two exams to practice and prepare to work under the pressure of the real exam. .
  • Certified Kubernetes Application Developer (CKAD) - Linux Academy: If you have a LinuxAcademy subscription you can follow this course. Keep two things in mind: 1) It focuses on editing yamls and little on how to generate them. 2) The exam mocks they have to practice are not so difficult and they may be insufficient to pass without having practiced beyond them. It’s recommended to do the labs, exams and other questions to exercise (see below)
  • Kubernetes Deep Dive - A Cloud Guru: This course is to have an overview of Kubernetes, for example of its architecture (API Server, Kubelet, etc.) as well as to take the first steps in application deployments. No practical labs included.
  • Kubernetes Fundamentals - A Cloud Guru: This course is to start with Kubernetes, to have the fundamental concepts. Ideal for those who have not had contact with Kubernetes. No practical labs included.

Practice environments

  • Katacoda: This platform allows you to interact with a cluster with just one node, from a web console, similar to what we would get in the exam. The interesting thing is that there are scenarios created by other users that can be used to learn basic concepts, such as secrets, configmaps, volumes, etc. Please note that each scneario lasts a maximum of one hour.
  • Minikube: With this option you can install a virtual machine to have your own cluster with a node.

Exercises to practice

Endnotes

Again I recommend you to practice enough before taking the exam, even if you have experience with Kubernetes. Time management is important, so you must be prepared to use the Kubernetes documentation quickly (from the documentation page or from the console with kubectl), be prepared to generate yamls (not edit them), and handle nerves and pressure.

References

Leave a Comment