Exam CKA Topic 3 Question 26 Discussion
Actual exam question for Linux Foundation's CKA exam
Question #: 26
Topic #: 3
Question #: 26
Topic #: 3
Create a pod that echo "hello world" and then exists. Have the pod deleted automatically when it's completed
Suggested Answer:
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"
by Kim at Aug 20, 2026, 12:09 PM
0
0
0
10
Comments
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Commenting
You can sign-up / login (it's free).