Skip to content

Commit de4fa04

Browse files
committed
Fix minor typos
1 parent 3b9819c commit de4fa04

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ This repository hosts the CSI Hostpath driver and all of its build and dependent
44

55
## Pre-requisite
66
- Kubernetes cluster
7-
- Running verrsion 1.13 or later
7+
- Running version 1.13 or later
88
- Access to terminal with `kubectl` installed
99

1010
## Deployment
11-
The easiest way to test the Hostpath driver is to run `deploy/deploy-hostpath.sh` scrip as show:
11+
The easiest way to test the Hostpath driver is to run `deploy/deploy-hostpath.sh` script as shown:
1212

1313
```shell
1414
$ sh deploy/deploy-hostpath.sh
1515
```
1616

17-
You should see an output similar to the following printed on the terminal showing the application of rbac rules and the result of deploying the hostpath driver, external privisioner and external attacher components:
17+
You should see an output similar to the following printed on the terminal showing the application of rbac rules and the result of deploying the hostpath driver, external provisioner and external attacher components:
1818

1919
```shell
2020
applying RBAC rules
@@ -65,19 +65,19 @@ storageclass.storage.k8s.io/csi-hostpath-sc created
6565
Let's validate the components are deployed:
6666

6767
```shell
68-
$> kubectl get pv
68+
$ kubectl get pv
6969
NAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE
7070
pvc-58d5ec38-03e5-11e9-be51-000c29e88ff1 1Gi RWO Delete Bound default/csi-pvc csi-hostpath-sc 80s
7171

72-
$> kubectl get pvc
72+
$ kubectl get pvc
7373
NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE
7474
csi-pvc Bound pvc-58d5ec38-03e5-11e9-be51-000c29e88ff1 1Gi RWO csi-hostpath-sc 93s
7575
```
7676

7777
Finally, inspect the application pod `my-csi-app` which mounts a Hostpath volume:
7878

7979
```shell
80-
$> kubectl describe pods/my-csi-app
80+
$ kubectl describe pods/my-csi-app
8181
Name: my-csi-app
8282
Namespace: default
8383
Priority: 0
@@ -156,7 +156,7 @@ Then, use the following command to locate the file. If everything works OK you s
156156
An additional way to ensure the driver is working properly is by inspecting the VolumeAttachment API object created that represents the attached volume:
157157

158158
```shell
159-
$> kubectl describe volumeattachment
159+
$ kubectl describe volumeattachment
160160
Name: csi-a7515d53b30a1193fd70b822b18181cff1d16422fd922692bce5ea234cb191e9
161161
Namespace:
162162
Labels: <none>

0 commit comments

Comments
 (0)