Skip to content

Commit b6a7d8f

Browse files
Merge pull request #1 from Sajiyah-Salat/Sajiyah-Salat-patch-2
Update typos
2 parents 61e56f0 + e2d943a commit b6a7d8f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Kubernetes/commands/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ kubectl create deployment <name> --image <image name>
2727
kubectl create deployment mynginx --image nginx
2828
```
2929

30-
- To sacle the deployment (increase replicas)
30+
- To scale the deployment (increase replicas)
3131

3232
```
3333
kubectl scale deployment <deployment name> --replicas <no of replicas>
@@ -40,7 +40,7 @@ kubectl scale deployment mynginx --replicas 2
4040
kubectl get all
4141
```
4242

43-
- To get the get details from the a particular namespace
43+
- To get the get details from a particular namespace
4444

4545
```bash
4646
kubectl get all -n <namespace name>
@@ -112,7 +112,7 @@ kubectl delete pod <pod-name>
112112
kubectl logs <pod-name>
113113
```
114114

115-
- To check logs or sh/bash of a container inside a pod. That if pods have multiple container an we have enter inside a container
115+
- To check logs or sh/bash of a container inside a pod,if pods have multiple container,we can enter inside a container
116116

117117
```bash
118118
kube exec -it <pod-name> -c <container-name> -- <bash command>
@@ -189,7 +189,7 @@ kubectl get pv
189189
kubectl get pvc
190190
```
191191

192-
- To chnage default/active namespace
192+
- To change default/active namespace
193193

194194
```bash
195195
kubectl config set-context --current --namespace=<namespace name>
@@ -199,4 +199,4 @@ kubectl config set-context --current --namespace=<namespace name>
199199

200200
```bash
201201
kubectl get all -n <namespace name>
202-
```
202+
```

0 commit comments

Comments
 (0)