Unverified Commit 1420f28f authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #57810 from sbezverk/e2e_test_fix

Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Fixing typo in e2e test variable Fixing a typo in a value of one constant. ```release-note ```
parents 38f63321 fe7a0c5a
...@@ -120,7 +120,7 @@ const ( ...@@ -120,7 +120,7 @@ const (
// provisioner daemonSetName name // provisioner daemonSetName name
daemonSetName = "local-volume-provisioner" daemonSetName = "local-volume-provisioner"
// provisioner default mount point folder // provisioner default mount point folder
provisionerDefaultMountRoot = "/mnt-local-storage" provisionerDefaultMountRoot = "/mnt/local-storage"
// provisioner node/pv cluster role binding // provisioner node/pv cluster role binding
nodeBindingName = "local-storage:provisioner-node-binding" nodeBindingName = "local-storage:provisioner-node-binding"
pvBindingName = "local-storage:provisioner-pv-binding" pvBindingName = "local-storage:provisioner-pv-binding"
...@@ -1071,7 +1071,7 @@ func createProvisionerDaemonset(config *localTestConfig) { ...@@ -1071,7 +1071,7 @@ func createProvisionerDaemonset(config *localTestConfig) {
}, },
{ {
Name: "local-disks", Name: "local-disks",
MountPath: "/mnt/local-storage", MountPath: provisionerDefaultMountRoot,
}, },
}, },
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment