Certified Kubernetes Administrator (CKA) Exam Questions

  Edina  07-17-2021

It is your chance to pass the CKA exam and become a Certified Kubernetes Administrator. All you have to do is to go through PassQuestion Certified Kubernetes Administrator (CKA) Exam Questions so you can clear the CKA certification exam on your first attempt. PassQuestion Certified Kubernetes Administrator (CKA) Exam Questions provide you the possible shortest way to pass exam and get certified. It will help you build confidence and you will be able to find out important tips to attempt your CKA Certified Kubernetes Administrator exam.

Certified Kubernetes Administrator (CKA) Exam Overview

CKA was created by The Linux Foundation and the Cloud Native Computing Foundation (CNCF) as a part of their ongoing effort to help develop the Kubernetes ecosystem. The exam is an online, proctored, performance-based test that requires solving multiple tasks from a command line running Kubernetes.This certification is for Kubernetes administrators, cloud administrators and other IT professionals who manage Kubernetes instances.

The Certified Kubernetes Administrator (CKA) certification is designed to ensure that certification holders have the skills, knowledge, and competency to perform the responsibilities of Kubernetes Administrators. The CKA certification allows certified administrators to quickly establish their credibility and value in the job market, and also allowing companies to more quickly hire high-quality teams to support their growth.

Exam Information

The online exam consists of a set of performance-based items (problems) to be solved in a command line and candidates have 2 hours to complete the tasks.For the CKA Exam, a score of 66% or above must be earned to pass. Candidates are allowed 2 hours to complete the CKA exam. The cost is $375 and includes one free retake.CKA Exam tasks are available in English, Simplified Chinese, and Japanese. 

Exam Topics

  • Cluster Architecture, Installation & Configuration    25%
  • Workloads & Scheduling    15%
  • Services & Networking    20%
  • Storage    10%
  • Troubleshooting    30%

View Online Certified Kubernetes Administrator (CKA) Free Questions

Create a busybox pod that runs the command "env" and save the output to "envpod" file
A. Solution:
kubectl run busybox --image=busybox --restart=Never --rm -it -- env > envpod.yaml
Answer: A

List pod logs named "frontend" and search for the pattern "started" and write it to a file "/opt/error- logs"
A. Solution:
Kubectl logs frontend | grep -i "started" > /opt/error-logs
Answer: A

Create a pod that echo "hello world" and then exists. Have the pod deleted automatically when it's completed
A. Solution:
kubectl run busybox --image=busybox -it --rm --restart=Never -- /bin/sh -c 'echo hello world'
kubectl get po # You shouldn't see pod with the name "busybox"
Answer: A

Create a namespace called 'development' and a pod with image nginx called nginx on this namespace.
A. Solution:
kubectl create namespace development
kubectl run nginx --image=nginx --restart=Never -n development
Answer: A

Get list of all pods in all namespaces and write it to file "/opt/pods-list.yaml"
A. Solution:
kubectl get po -all-namespaces > /opt/pods-list.yaml
Answer: A

Create a pod with image nginx called nginx and allow traffic on port 80
A. Solution:
kubectl run nginx --image=nginx --restart=Never --port=80
Answer: A
 

Leave And reply:

  TOP 50 Exam Questions
Exam