Exam CKA Topic 3 Question 26 Discussion

Actual exam question for Linux Foundation's CKA exam
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

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Nick name: Submit Cancel
A voting comment increases the vote count for the chosen answer by one.

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.

0
0
0
10