Skip to main content

Certified Kubernetes Administrator


Certified Kubernetes Administrator exam is all about the types of tasks an administrator might need to perform as part of their job. It will involve more than just creating and destroying pods and their associated objects, and so the exam questions cover more than just YAML and kubectl. I consider myself lucky because for the past one & half years, I had the chance to work on Kubernetes in one of my projects. I regularly worked on improving my skills and studied for the exam, as it is one of the toughest and practical based exam.
This is one of the most difficult certifications that I have ever done. CKA exam is one of its kind with very rich content and about everything hands-on. The exam itself felt fair in terms of complexity and difficulty. You should know where to look in the Kubernetes docs to help you on more complex tasks and I mean knowing exactly where to look.

Preparation:
Firstly, I would advise you to download the exam study handbook and get an understanding of what is required of you. The structure of the exam is given below:
1. 3 hours
2. 24 questions
3. Pass mark of 74%
4. Remotely proctored
5. Chrome browser plus an extension
6. Government-issued non-expired ID
7. Webcam and microphone
8. Steady internet, preferably 5MB up/down.
9. Exam Cost: $300 and includes one free retake.
10.Ubuntu machines

You may refer the below clusters to practice:               
2. Minikube

Some additional useful links:


Exam Day:
You must meet all the requirements as mentioned in the exam handbook. Before starting the exam a proctor will ask to confirm your identity & will validate whether your working surface is clean (nothing around that can help).

The CKA is an exam that is kind of an open book test. You are allowed to have a single tab open to anything in the *.kubernetes.io or github.com/kubernetes. When you are solving a question and need a reference or an example, search for it in the documentation. Kubernetes.io has a great search function & you can refer to examples, copy-paste YAML text and commands.
There is a built-in notepad in the exam interface which might be handy since you're not allowed to write on paper during the exam.

Try to focus on the questions & read it very carefully in order to understand the requirements. Some questions are tricky in context therefore try to stay calm and avoid typing mistakes. I took around 2:30 hours to complete my exam.
So, practice, practice, and practice. This is a practical exam, no multiple-choice questions here.

Result:
In my case, I got results within 30 hours via an email after the completion of the exam. You will also receive an official email at the end of the exam informing you that the result will be declared within 36 hours.



I hope this article would be useful for you and please let me know in the comments if it somehow helped you to pass the exam.



Comments

Post a Comment

Thanks for your comment. In case of any concerns, please contact me at er.ashishsharma@outlook.com

Popular posts from this blog

Comparison between Azure Application Gateway V1 and V2

Microsoft has announced new version of Azure Application Gateway and its Web Application Firewall module (WAF). In this article, we will discuss about the enhancements and new highlights that are available in the new SKUs i.e. Standard_v2 and WAF_v2. Enhancements and new features: Scalability: It allows you to perform scaling of the number of instances on the traffic. Static VIP: The VIP assigned to the Application Gateway can be static which will not change over its lifecycle. Header Rewrite: It allows you to add, remove or update HTTP request and response headers on application gateway. Zone redundancy: It enables application gateway to survive zonal failures which allows increasing the resilience of applications. Improved Performance: Improvement in performance during the provisioning and during the configuration update activities. Cost: V2 SKU may work out to be overall cheaper for you relative to V1 SKU. For more information, refer Microsoft prici

Difference between Azure Front Door Service and Traffic Manager

Azure Front Door Service is Microsoft’s highly available and scalable web application acceleration platform and global HTTP(s) load balancer. Azure Front Door Service supports Dynamic Site Acceleration (DSA), SSL offloading and end to end SSL, Web Application Firewall, cookie-based session affinity, URL path-based routing, free certificates and multiple domain management. In this article, I will compare Azure Front Door to Azure Traffic Manager in terms of performance and functionality. Similarity: Azure Front Door service can be compared to Azure Traffic Manager in a way that this also provides global HTTP load balancing to distribute traffic across different Azure regions, cloud providers or even with your on-premises. Both AFD & Traffic Manager support: Multi-geo redundancy: If one region goes down, traffic routes to the closest region without any intervention. Closest region routing: Traffic is automatically routed to the closest region. Differences: Azu

Install Solr as an Azure App Service

After Sitecore 9.0.2, Solr is a supported search technology for Sitecore Azure PAAS deployments. In this article, we will install SOLR service 8.4.0 in Azure App Service for Sitecore 10. 1. Create Azure App Service Login to Azure and create Azure App service. Make sure Runtime stack should be Java. 2. Download Solr Download Solr 8.4.0 from https://archive.apache.org/dist/lucene/solr/ Extract the files and add the below web.config file in the Solr package. <?xml version="1.0" encoding="UTF-8"?> <configuration>  <system.webServer>      <handlers>      <add  name="httpPlatformHandler"            path="*"            verb="*"            modules="httpPlatformHandler"            resourceType="Unspecified" />    </handlers>    <httpPlatform processPath="%HOME%\site\wwwroot\bin\solr.cmd"        arguments="start -p %HTTP_PLATFORM_PORT%"

Azure Machine Learning public preview announcement //Build, May 2021

Azure service updates Azure Machine Learning public preview announcement //Build, May 2021 New feature: Prebuilt Docker images for Inferencing, now in public preview. Click here for more information.

Export BACPAC file of SQL database

When you need to create an archive of an Azure SQL database, you can export the database schema and data to a BACPAC file. A BACPAC file can be stored in Azure blob storage or in local storage in an on-premises location and later imported back into Azure SQL Database or into a SQL Server on-premises installation. Let's learn some of the ways to export BACPAC file. Export BACPAC using Azure Portal Open your SQL Database and select Export. Fill the parameters as shown below. Select your storage account container & enter your SQL Server admin login. To check the status of your database export. Open your SQL Database server containing the database being exported. Go to Settings and then click Import/Export history Export BACPAC using SSMS Login Azure SQL Database by SSMS. Right-click the database -> Tasks -> Export Data-tier Application Save the .bacpac file into local disk. Export BACPAC using SQLPackage There is a command line tool that you can also choose to