diff --git a/docs/csi-debug.md b/docs/csi-debug.md index b44f2267..90bffbc3 100644 --- a/docs/csi-debug.md +++ b/docs/csi-debug.md @@ -15,7 +15,7 @@ $ kubectl logs csi-nfs-controller-56bfddd689-dh5tk -c nfs -n kube-system > csi-n > note: there could be multiple controller pods, if there are no helpful logs, try to get logs from other controller pods ### Case#2: volume mount/unmount failed - - locate csi driver pod and figure out which pod does tha actual volume mount/unmount + - locate csi driver pod that does the actual volume mount/unmount ```console $ kubectl get pod -o wide -n kube-system | grep csi-nfs-node diff --git a/test/e2e/testsuites/dynamically_provisioned_reclaim_policy_tester.go b/test/e2e/testsuites/dynamically_provisioned_reclaim_policy_tester.go index 0d68d174..13982263 100644 --- a/test/e2e/testsuites/dynamically_provisioned_reclaim_policy_tester.go +++ b/test/e2e/testsuites/dynamically_provisioned_reclaim_policy_tester.go @@ -44,7 +44,7 @@ func (t *DynamicallyProvisionedReclaimPolicyTest) Run(client clientset.Interface if tpvc.ReclaimPolicy() == v1.PersistentVolumeReclaimRetain { tpvc.WaitForPersistentVolumePhase(v1.VolumeReleased) tpvc.DeleteBoundPersistentVolume() - // The controler server cannot resolve the nfs server hosting inside the testing k8s cluster, skipping the cleanup step. + // The controller server cannot resolve the nfs server hosting inside the testing k8s cluster, skipping the cleanup step. // tpvc.DeleteBackingVolume(&t.ControllerServer) } } diff --git a/test/e2e/testsuites/testsuites.go b/test/e2e/testsuites/testsuites.go index 321e99ca..eab6a800 100644 --- a/test/e2e/testsuites/testsuites.go +++ b/test/e2e/testsuites/testsuites.go @@ -67,7 +67,7 @@ var podFailedCondition = func(pod *v1.Pod) (bool, error) { ginkgo.By("Saw pod failure") return true, nil case v1.PodSucceeded: - return true, fmt.Errorf("pod %q successed with reason: %q, message: %q", pod.Name, pod.Status.Reason, pod.Status.Message) + return true, fmt.Errorf("pod %q succeeded with reason: %q, message: %q", pod.Name, pod.Status.Reason, pod.Status.Message) default: return false, nil }