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: README.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,17 @@ This repository hosts the CSI Hostpath driver and all of its build and dependent
4
4
5
5
## Pre-requisite
6
6
- Kubernetes cluster
7
-
- Running verrsion 1.13 or later
7
+
- Running version 1.13 or later
8
8
- Access to terminal with `kubectl` installed
9
9
10
10
## 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:
12
12
13
13
```shell
14
14
$ sh deploy/deploy-hostpath.sh
15
15
```
16
16
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:
18
18
19
19
```shell
20
20
applying RBAC rules
@@ -65,19 +65,19 @@ storageclass.storage.k8s.io/csi-hostpath-sc created
65
65
Let's validate the components are deployed:
66
66
67
67
```shell
68
-
$> kubectl get pv
68
+
$ kubectl get pv
69
69
NAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE
Finally, inspect the application pod `my-csi-app` which mounts a Hostpath volume:
78
78
79
79
```shell
80
-
$> kubectl describe pods/my-csi-app
80
+
$ kubectl describe pods/my-csi-app
81
81
Name: my-csi-app
82
82
Namespace: default
83
83
Priority: 0
@@ -156,7 +156,7 @@ Then, use the following command to locate the file. If everything works OK you s
156
156
An additional way to ensure the driver is working properly is by inspecting the VolumeAttachment API object created that represents the attached volume:
0 commit comments