Free CKA Exam Dumps

Question 16

Create a pod as follows:
CKA dumps exhibit Name:non-persistent-redis
CKA dumps exhibit container Image:redis
CKA dumps exhibit Volume with name:cache-control
CKA dumps exhibit Mount path:/data/redis
The pod should launch in thestagingnamespace and the volumemust notbe persistent.
Solution:
solution
F:WorkData Entry WorkData Entry20200827CKA13 B.JPG
CKA dumps exhibit
F:WorkData Entry WorkData Entry20200827CKA13 C.JPG
CKA dumps exhibit
F:WorkData Entry WorkData Entry20200827CKA13 D.JPG
CKA dumps exhibit

Does this meet the goal?

Correct Answer:A

Question 17

Configure the kubelet systemd-managed service, on the nodelabelled withname=wk8s-node-1, tolaunch a pod containing a singlecontainer of Imagehttpdnamedwebtoolautomatically. Any spec filesrequired should be placed in the/etc/kubernetes/manifestsdirectoryon the node.
You canssh to theappropriate node using:
[student@node-1] $ sshwk8s-node-1
You can assume elevatedprivileges on the node with thefollowing command:
[student@wk8s-node-1] $ |sudo ?Ci
Solution:
solution
F:WorkData Entry WorkData Entry20200827CKA21 C.JPG
CKA dumps exhibit
F:WorkData Entry WorkData Entry20200827CKA21 D.JPG
CKA dumps exhibit
F:WorkData Entry WorkData Entry20200827CKA21 E.JPG
CKA dumps exhibit
F:WorkData Entry WorkData Entry20200827CKA21 F.JPG
CKA dumps exhibit
F:WorkData Entry WorkData Entry20200827CKA21 G.JPG
CKA dumps exhibit

Does this meet the goal?

Correct Answer:A

Question 18

List all the pods sorted by name
Solution:
kubectl get pods --sort-by=.metadata.name

Does this meet the goal?

Correct Answer:A

Question 19

Create an nginx pod and list the pod with different levels of verbosity
Solution:
// 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

Does this meet the goal?

Correct Answer:A

Question 20

List all the pods sorted by name
Solution:
kubect1 get pods --sort-by=.metadata.name

Does this meet the goal?

Correct Answer:A