You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: topics/kubernetes/CKA.md
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@
22
22
23
23
## Setup
24
24
25
-
* Set up Kubernetes cluster. Use on of the following
25
+
* Set up Kubernetes cluster. Use one of the following
26
26
1. Minikube for local free & simple cluster
27
27
2. Managed Cluster (EKS, GKE, AKS)
28
28
@@ -54,7 +54,7 @@ Note: create an alias (`alias k=kubectl`) and get used to `k get po`
54
54
</b></details>
55
55
56
56
<details>
57
-
<summary>Assuming you have a Pod called "nginx-test", how to remove it?</summary><br><b>
57
+
<summary>Assuming that you have a Pod called "nginx-test", how to remove it?</summary><br><b>
58
58
59
59
`k delete nginx-test`
60
60
</b></details>
@@ -107,7 +107,7 @@ If you ask yourself how would I remember writing all of that? no worries, you ca
107
107
<details>
108
108
<summary>How to test a manifest is valid?</summary><br><b>
109
109
110
-
with `--dry-run` flag which will not actually create it, but it will test it and you can find this way any syntax issues.
110
+
with `--dry-run` flag which will not actually create it, but it will test it and you can find this way, any syntax issues.
111
111
112
112
`k create -f YAML_FILE --dry-run`
113
113
</b></details>
@@ -158,7 +158,11 @@ To count them: `k get po -l env=prod --no-headers | wc -l`
158
158
First change to the directory tracked by kubelet for creating static pod: `cd /etc/kubernetes/manifests` (you can verify path by reading kubelet conf file)
159
159
160
160
Now create the definition/manifest in that directory
0 commit comments