mirror of https://github.com/k3s-io/k3s
Merge pull request #50059 from ddysher/local-e2e-bug-fix
Automatic merge from submit-queue Fix pointer bug in local volume e2e test **What this PR does / why we need it**: Fix pointer bug in local volume e2e test **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes https://github.com/kubernetes/kubernetes/issues/50043 **Special notes for your reviewer**: **Release note**: ```release-note NONE ```pull/6/head
commit
15842f3769
|
@ -109,7 +109,7 @@ var _ = SIGDescribe("PersistentVolumes-local [Feature:LocalPersistentVolumes] [S
|
|||
Expect(len(nodes.Items)).NotTo(BeZero(), "No available nodes for scheduling")
|
||||
scName = fmt.Sprintf("%v-%v", testSCPrefix, f.Namespace.Name)
|
||||
// Choose the first node
|
||||
node0 = &config.nodes.Items[0]
|
||||
node0 = &nodes.Items[0]
|
||||
|
||||
config = &localTestConfig{
|
||||
ns: f.Namespace.Name,
|
||||
|
|
Loading…
Reference in New Issue