-
In multi-container pod example: https://github.com/dgkanatsios/CKAD-exercises/blob/master/b.multi_container_pods.md
Why don't we use `command` in the init container instead of `args`?
As k8s doc…
-
I think the solution of the exercise https://github.com/dgkanatsios/CKAD-exercises/blob/master/c.pod_design.md#create-a-cron-job-with-image-busybox-that-runs-every-minute-and-writes-date-echo-hello-fr…
-
~/vimrc
set tabstop=2 shiftwidth=2 expandtab
-
During my recent CKAD exam, I was asked similar question but I'm not sure how the solution you have provided is matching the question. Please clarify.
As per the question we need to get namespace a…
-
In https://github.com/dgkanatsios/CKAD-exercises/blob/master/b.multi_container_pods.md there is a small error in the second question:
```
...
# Execute wget
kubectl run box --image=busybox --resta…
-
Issue: [CronJob - Terminate if Job takes more than 17 S](https://github.com/dgkanatsios/CKAD-exercises/blob/master/c.pod_design.md#create-a-cron-job-with-image-busybox-that-runs-every-minute-and-write…
-
There is an error for the command:
```
kubectl cp busybox:/etc/passwd ./passwd # kubectl cp command
```
I think you need update it to
```
kubectl cp busybox:etc/passwd ./passwd # kubectl cp com…
-
In Multi-container Pods section the second question is throwing an error
```
apiVersion: v1
kind: Pod
metadata:
labels:
run: box
name: box
spec:
initContainers: #
- args: #
…
-
Trying to do some exercise on this link => https://github.com/dgkanatsios/CKAD-exercises/blob/master/b.multi_container_pods.md and my external dns resolution fails from the pod.
Version:
`sshanmug…
-
I followed all the steps in this exercise https://github.com/dgkanatsios/CKAD-exercises/blob/master/f.services.md#create-an-nginx-deployment-of-2-replicas-expose-it-via-a-clusterip-service-on-port-80-…