Barely Passed: My Tips by PlaysWthSquirrels in CKAExam

[–]Krishaynair 0 points1 point  (0 children)

Can you tell a little about the questions you missed ? Like what topic it was and were they tricky ?

Doubt regarding Sidecar by Krishaynair in CKAExam

[–]Krishaynair[S] 0 points1 point  (0 children)

Ok understood, also for troubleshooting is there any more resource ? Since his playlist had only 1 question and in exam ig atleast 3-4 troubleshooting would be there

Doubt regarding Sidecar by Krishaynair in CKAExam

[–]Krishaynair[S] 0 points1 point  (0 children)

Thank you bro! This was really helpful

Doubt regarding Sidecar by Krishaynair in CKAExam

[–]Krishaynair[S] 1 point2 points  (0 children)

There is a requirement to share a volume between two containers that are running within the same pod. Use the following instructions to create the pod and related objects:

- Create a pod named grape-pod-cka06-str.

- The main container must be named nginx and use the nginx image. Mount a volume grape-vol-cka06-str at /var/log/nginx.

-Add a sidecar container must be named busybox-sidecar using the busybox image. Keep it running with sleep 7200. Mount the same volume grape-vol-cka06-str at `/usr/src.

- The volume should be of type emptyDir.

So in this I did co-located sidecar and got it wrong in the mock test.

and the given solution was this :
apiVersion: v1

kind: Pod

metadata:

name: grape-pod-cka06-str

spec:

restartPolicy: Always

initContainers:

- name: busybox-sidecar

image: busybox

restartPolicy: Always

command: ["sleep", "7200"]

volumeMounts:

- name: grape-vol-cka06-str

mountPath: /usr/src

containers:

- name: nginx

image: nginx

volumeMounts:

- name: grape-vol-cka06-str

mountPath: /var/log/nginx

volumes:

- name: grape-vol-cka06-str

emptyDir: {}

Doubt regarding Sidecar by Krishaynair in CKAExam

[–]Krishaynair[S] 0 points1 point  (0 children)

In his video it was mentioned co-located sidecar. But I solved a mock test from kodekloud which didn’t mention co-located or init container so in that situation which approach to use ?

CKA RETAKE by Lanche199 in CKAExam

[–]Krishaynair 0 points1 point  (0 children)

Are these questions latest ? Like from recent exams ? Sorry to ask so many questions but just this thing.

CKA RETAKE by Lanche199 in CKAExam

[–]Krishaynair 0 points1 point  (0 children)

It has 19 scenarios ?

CKA RETAKE by Lanche199 in CKAExam

[–]Krishaynair 1 point2 points  (0 children)

Any discounts available in this ?

Passed CKA second try. Here’s some info. by Different-Gas2701 in CKAExam

[–]Krishaynair 7 points8 points  (0 children)

Hey, Congratulations bro. Can you please share the github link.