This commit is contained in:
abregman
2021-07-18 22:01:18 +03:00
parent 4c6d7360ce
commit 992b3da3e8
2 changed files with 50 additions and 3 deletions

31
certificates/ckad.md Normal file
View File

@ -0,0 +1,31 @@
## Certified Kubernetes Application Developer (CKAD)
### Core Concepts
### Pods
<details>
<summary>Deploy a pod called web-1985 using the nginx:alpine image</code></summary><br><b>
`kubectl run web-1985 --image=nginx:alpine --restart=Never`
</b></details>
### Namespaces
<details>
<summary>List all namespaces</code></summary><br><b>
kubectl get ns
</b></details>
<details>
<summary>List all the pods in the namespace 'neverland'</code></summary><br><b>
kubectl get ns -n neverland
</b></details>
<details>
<summary>List all the pods in all the namespaces</code></summary><br><b>
kubectl get po --all-namespaces
</b></details>