ExamGecko

Linux Foundation CKA Practice Test - Questions Answers, Page 5

Question list
Search
Search

Question 41

Report
Export
Collapse

Check the Image version of nginx-dev pod using jsonpath

A.
See the solution below.
A.
See the solution below.
Answers
Suggested answer: A

Explanation:

kubect1 get po nginx-dev -o

jsonpath='{.spec.containers[].image}{"\n"}'

asked 18/09/2024
Alan Coutinho
42 questions

Question 42

Report
Export
Collapse

Create a busybox pod and add "sleep 3600" command

A.
See the solution below.
A.
See the solution below.
Answers
Suggested answer: A

Explanation:

kubectl run busybox --image=busybox --restart=Never -- /bin/sh -c

"sleep 3600"

asked 18/09/2024
Dennis Spring
45 questions

Question 43

Report
Export
Collapse

Create an nginx pod and list the pod with different levels of verbosity

A.
See the solution below.
A.
See the solution below.
Answers
Suggested answer: A

Explanation:

// create a pod

kubectl run nginx --image=nginx --restart=Never --port=80

// List the pod with different verbosity

kubectl get po nginx --v=7

kubectl get po nginx --v=8

kubectl get po nginx --v=9

asked 18/09/2024
Michael Ulrich
41 questions

Question 44

Report
Export
Collapse

List the nginx pod with custom columns POD_NAME and POD_STATUS

A.
See the solution below.
A.
See the solution below.
Answers
Suggested answer: A

Explanation:

kubectl get po -o=custom-columns="POD_NAME:.metadata.name,

POD_STATUS:.status.containerStatuses[].state"

asked 18/09/2024
SERGIO MELOSEVICH
45 questions

Question 45

Report
Export
Collapse

List all the pods sorted by name

A.
See the solution below.
A.
See the solution below.
Answers
Suggested answer: A

Explanation:

kubectl get pods --sort-by=.metadata.name

asked 18/09/2024
Hany Mohammed
35 questions

Question 46

Report
Export
Collapse

List all the pods sorted by created timestamp

Become a Premium Member for full access
Unlock Premium Member  Unlock Premium Member

Question 47

Report
Export
Collapse

List all the pods showing name and namespace with a json path expression

Become a Premium Member for full access
Unlock Premium Member  Unlock Premium Member

Question 48

Report
Export
Collapse

List "nginx-dev" and "nginx-prod" pod and delete those pods

Become a Premium Member for full access
Unlock Premium Member  Unlock Premium Member

Question 49

Report
Export
Collapse

Score: 4%

Context

You have been asked to create a new ClusterRole for a deployment pipeline and bind it to a specific

ServiceAccount scoped to a specific namespace.

Task

Create a new ClusterRole named deployment-clusterrole, which only allows to create the following resource types:

• Deployment

• StatefulSet

• DaemonSet

Create a new ServiceAccount named cicd-token in the existing namespace app-team1.

Bind the new ClusterRole deployment-clusterrole lo the new ServiceAccount cicd-token , limited to the namespace app-team1.

Become a Premium Member for full access
Unlock Premium Member  Unlock Premium Member

Question 50

Report
Export
Collapse

Score: 4%

Task

Set the node named ek8s-node-1 as unavailable and reschedule all the pods running on it.

Become a Premium Member for full access
Unlock Premium Member  Unlock Premium Member
Total 67 questions
Go to page: of 7