Add OS and OpenShift questions

This commit is contained in:
abregman
2021-07-22 20:45:06 +03:00
parent 1d88242f34
commit 6e01886e6b
7 changed files with 321 additions and 123 deletions

View File

@@ -1,7 +1,15 @@
## Certified Kubernetes Administrator (CKA)
### 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>
<details>
<summary>How to find out on which node a certain pod is running?</summary><br><b>
`kubectl get po -o wide`
</b></details>