Skip to content

Commit 29c9f3b

Browse files
authored
Remove Unnecessary spaces for better fetching on web
1 parent e13f118 commit 29c9f3b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Kubernetes Commands Zero-to-Hero/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,30 +20,30 @@ Kubernetes provides a way to schedule and deploy containers, scale them to your
2020

2121
1. **Creation of Pods**
2222

23-
```bash
24-
kubectl run azfarpod --image=httpd
23+
```bash
24+
kubectl run azfarpod --image=httpd
2525
```
2626

2727
2. **To check the Pods**
2828

2929
```bash
30-
kubectl get pods
30+
kubectl get pods
3131
```
3232

3333
3. **To delete a Pods**
3434

3535
```bash
36-
kubectl delete pods --all
36+
kubectl delete pods --all
3737
```
3838
**or**
3939
```bash
40-
kubectl delete pods azfarpod
40+
kubectl delete pods azfarpod
4141
```
4242

4343
4. **To create a pod from a YAML code**
4444

4545
```bash
46-
kubectl create -f filename.yml
46+
kubectl create -f filename.yml
4747
```
4848

4949
5. **Now, if you want to create a ReplicaSet or ReplicationController, it will be created by the YAML code only. You'll find both codes in the above repo.**

0 commit comments

Comments
 (0)