Skip to content

Commit d52341f

Browse files
committed
docs: spelling corrections 📘
1 parent 021e86c commit d52341f

9 files changed

+13
-12
lines changed

‎docs/csi-debug.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ kubectl logs csi-blob-controller-56bfddd689-dh5tk -c blob -n kube-system > csi-b
1717
> `kubectl logs deploy/csi-blob-controller -c blob -f -n kube-system`
1818
1919
### Case#2: volume mount/unmount failed
20-
- locate csi driver pod and make sure which pod do tha actual volume mount/unmount
20+
- locate csi driver pod and make sure which pod does the actual volume mount/unmount
2121
```console
2222
kubectl get po -o wide -n kube-system | grep csi-blob-node
2323
```
@@ -36,7 +36,7 @@ kubectl logs csi-blob-node-cvgbs -c blob -n kube-system > csi-blob-node.log
3636
> kubectl logs daemonset/csi-blob-node -c blob -n kube-system -f
3737
> ```
3838
39-
#### Update driver version quickly by editting driver deployment directly
39+
#### Update driver version quickly by editing driver deployment directly
4040
- update controller deployment
4141
```console
4242
kubectl edit deployment csi-blob-controller -n kube-system

‎docs/csi-dev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $ make verify
2222
helm package charts/latest/blob-csi-driver -d charts/latest/
2323
```
2424

25-
- Build continer image and push to dockerhub
25+
- Build container image and push to dockerhub
2626
```console
2727
export REGISTRY_NAME=<dockerhub-alias>
2828
make push-latest

‎docs/design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Azure Blob Storage CSI driver design goals
2-
> Azure Blob Storage CSI driver is implemented as compatitable as possible with built-in [blobfuse](https://kubernetes.io/docs/concepts/storage/volumes/#blobfuse) plugin, it has following goals:
2+
> Azure Blob Storage CSI driver is implemented as compatible as possible with built-in [blobfuse](https://kubernetes.io/docs/concepts/storage/volumes/#blobfuse) plugin, it has following goals:
33
44
Goal | Status | Notes
55
--- | --- | --- |

‎docs/install-csi-driver-v0.1.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Install blobfuse CSI driveri v0.1.0-alpha on a kubernetes cluster
1+
# Install blobfuse CSI driver v0.1.0-alpha on a kubernetes cluster
22

33
If you have already installed Helm, you can also use it to install blobfuse CSI driver. Please see [Installation with Helm](../charts/README.md).
44

‎docs/install-csi-driver-v0.2.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Install blobfuse CSI driveri v0.2.0 on a kubernetes cluster
1+
# Install blobfuse CSI driver v0.2.0 on a kubernetes cluster
22

33
If you have already installed Helm, you can also use it to install blobfuse CSI driver. Please see [Installation with Helm](../charts/README.md).
44

‎docs/install-csi-driver-v0.3.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Install blobfuse CSI driveri v0.3.0 on a kubernetes cluster
1+
# Install blobfuse CSI driver v0.3.0 on a kubernetes cluster
22

33
If you have already installed Helm, you can also use it to install blobfuse CSI driver. Please see [Installation with Helm](../charts/README.md).
44

‎docs/install-csi-driver-v0.4.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Install blobfuse CSI driveri v0.4.0 on a kubernetes cluster
1+
# Install blobfuse CSI driver v0.4.0 on a kubernetes cluster
22

33
If you have already installed Helm, you can also use it to install blobfuse CSI driver. Please see [Installation with Helm](../charts/README.md).
44

‎docs/install-driver-on-aks.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
- Prerequisites
44

5-
AKS cluster is created with user asissnged identity by default, make sure cluster identity has `Contributor` role on node resource group, follow below instruction to set up `Contributor` role on node resource group
5+
An AKS cluster is created with a user assigned identity by default.
6+
Make sure the cluster identity has a `Contributor` role assignment on the cluster resource group.
7+
See below how to assign a `Contributor` role on the cluster resource group
68
![image](https://user-images.githubusercontent.com/4178417/120978367-f68f0a00-c7a6-11eb-8e87-89247d1ddc0b.png):
79

8-
910
- Install CSI driver
1011

11-
install latest **released** CSI driver version, following guide [here](./install-blob-csi-driver.md)
12+
Install latest **released** CSI driver version, following guide [here](./install-blob-csi-driver.md)
1213

1314
- Set up new storage classes
1415
```console

‎test/e2e/testsuites/testsuites.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ var podFailedCondition = func(pod *v1.Pod) (bool, error) {
480480
ginkgo.By("Saw pod failure")
481481
return true, nil
482482
case v1.PodSucceeded:
483-
return true, fmt.Errorf("pod %q successed with reason: %q, message: %q", pod.Name, pod.Status.Reason, pod.Status.Message)
483+
return true, fmt.Errorf("pod %q succeeded with reason: %q, message: %q", pod.Name, pod.Status.Reason, pod.Status.Message)
484484
default:
485485
return false, nil
486486
}

0 commit comments

Comments
 (0)