Skip to content

Commit aa3f83f

Browse files
committed
fixing codespell errors
Signed-off-by: Humble Chirammal <[email protected]>
1 parent 525ddd7 commit aa3f83f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG/CHANGELOG-1.4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In this case, Provisioner will use PVC requested size as PV size rather than 0 b
2222
- Fixed potential leak of volumes after CSI driver timeouts. ([#312](https://github.com/kubernetes-csi/external-provisioner/pull/312), [@jsafrane](https://github.com/jsafrane))
2323
- Fixes issue where provisioner provisions volumes for in-tree PVC's which have not been migrated ([#341](https://github.com/kubernetes-csi/external-provisioner/pull/341), [@davidz627](https://github.com/davidz627))
2424
- Send the CSI volume_id instead of PVC Name to the csi-driver in volumeCreate when datasource is PVC ([#310](https://github.com/kubernetes-csi/external-provisioner/pull/310), [@Madhu-1](https://github.com/Madhu-1))
25-
- Fixes nil pointer derefence in log when migration turned on ([#342](https://github.com/kubernetes-csi/external-provisioner/pull/342), [@davidz627](https://github.com/davidz627))
25+
- Fixes nil pointer dereference in log when migration turned on ([#342](https://github.com/kubernetes-csi/external-provisioner/pull/342), [@davidz627](https://github.com/davidz627))
2626
- Handle deletion of CSI migrated volumes ([#273](https://github.com/kubernetes-csi/external-provisioner/pull/273), [@ddebroy](https://github.com/ddebroy))
2727
- Reduced logging noise of unrelated PVCs. Emit event on successful provisioning. ([#351](https://github.com/kubernetes-csi/external-provisioner/pull/351), [@jsafrane](https://github.com/jsafrane))
2828
- Added extra verification of source Snapshot and PersistentVolumeClaim before provisioning. ([#352](https://github.com/kubernetes-csi/external-provisioner/pull/352), [@jsafrane](https://github.com/jsafrane))

pkg/capacity/provision.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ func (p *provisionWrapper) Provision(ctx context.Context, options controller.Pro
6565
p.c.refreshSC(options.StorageClass.Name)
6666
}
6767
} else if state != controller.ProvisioningNoChange {
68-
// Unsuccesful provisioning might also be a reason why
68+
// Unsuccessful provisioning might also be a reason why
6969
// we have to refresh. We could try to identify the topology
7070
// via the selected node (if there is any), but more important
7171
// and easier is to refresh the objects for the storage

pkg/controller/controller_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ func TestGetSecretReference(t *testing.T) {
744744
},
745745
expectRef: &v1.SecretReference{Name: "pvcname", Namespace: "ns"},
746746
},
747-
"template - valid, provisioner with pvc name and namepsace": {
747+
"template - valid, provisioner with pvc name and namespace": {
748748
secretParams: provisionerSecretParams,
749749
params: map[string]string{
750750
provisionerSecretNameKey: "${pvc.name}",

pkg/controller/topology_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ func TestStatefulSetSpreading(t *testing.T) {
287287
},
288288
},
289289
},
290-
"select index 1 among allowedTopologies with multiple terms/multiple requirments for pvc with statefulset name:testset and id:2; ignore claimname:testpvcB": {
290+
"select index 1 among allowedTopologies with multiple terms/multiple requirements for pvc with statefulset name:testset and id:2; ignore claimname:testpvcB": {
291291
pvcName: "testpvcB-testset-2",
292292
allowedTopologies: []v1.TopologySelectorTerm{
293293
{

0 commit comments

Comments
 (0)