CNCF CKA Practice Exams
Last updated on Apr 01,2025- Exam Code: CKA
- Exam Name: Certified Kubernetes Administrator
- Certification Provider: CNCF
- Latest update: Apr 01,2025
CORRECT TEXT
Create a pod as follows:
✑ Name: non-persistent-redis
✑ container Image: redis
✑ Volume with name: cache-control
✑ Mount path: /data/redis
The pod should launch in the staging namespace and the volume must not be persistent.
CORRECT TEXT
A Kubernetes worker node, named wk8s-node-0 is in state NotReady. Investigate why this is the case, and perform any appropriate steps to bring the node to a Ready state, ensuring that any changes are made permanent.
You can ssh to the failed node using:
[student@node-1] $ | ssh Wk8s-node-0
You can assume elevated privileges on the node with the following command:
[student@w8ks-node-0] $ | sudo Ci
CORRECT TEXT
Create a Kubernetes secret as follows:
✑ Name: super-secret
✑ password: bob
Create a pod named pod-secrets-via-file, using the redis Image, which mounts a secret named super-secret at /secrets.
Create a second pod named pod-secrets-via-env, using the redis Image, which exports password as CONFIDENTIAL
CORRECT TEXT
Ensure a single instance of pod nginx is running on each node of the Kubernetes cluster where nginx also represents the Image name which has to be used. Do not
override any taints currently in place.
Use DaemonSet to complete this task and use ds-kusc00201 as DaemonSet name.
CORRECT TEXT
Create a deployment as follows:
✑ Name: nginx-random
✑ Exposed via a service nginx-random
✑ Ensure that the service & pod are accessible via their respective DNS records
✑ The container(s) within any pod(s) running as a part of this deployment should use the nginx Image
Next, use the utility nslookup to look up the DNS records of the service & pod and write the output to /opt/KUNW00601/service.dns and /opt/KUNW00601/pod.dns respectively.
CORRECT TEXT
Score: 7%
Task
Given an existing Kubernetes cluster running version 1.20.0, upgrade all of the Kubernetes control plane and node components on the master node only to version 1.20.1.
Be sure to drain the master node before upgrading it and uncordon it after the upgrade.
You are also expected to upgrade kubelet and kubectl on the master node.
CORRECT TEXT
Create an nginx pod and list the pod with different levels of verbosity
CORRECT TEXT
Check to see how many worker nodes are ready (not including nodes tainted NoSchedule) and write the number to /opt/KUCC00104/kucc00104.txt.
CORRECT TEXT
Create a file:
/opt/KUCC00302/kucc00302.txt that lists all pods that implement service baz in namespace development.
The format of the file should be one pod name per line.
CORRECT TEXT
Score: 5%
Task
From the pod label name=cpu-utilizer, find pods running high CPU workloads and write the name of the pod consuming most CPU to the file /opt/KUTR00401/KUTR00401.txt (which already exists).