File tree Expand file tree Collapse file tree 4 files changed +7
-10
lines changed Expand file tree Collapse file tree 4 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -77,8 +77,6 @@ test/e2e/storage/drivers
77
77
test/e2e/storage/testsuites
78
78
test/e2e/storage/utils
79
79
test/e2e/storage/vsphere
80
- test/e2e/upgrades
81
- test/e2e/upgrades/storage
82
80
test/images/agnhost/dns
83
81
test/images/agnhost/inclusterclient
84
82
test/images/agnhost/net/nat
Original file line number Diff line number Diff line change @@ -49,11 +49,11 @@ func (t *ServiceUpgradeTest) Setup(f *framework.Framework) {
49
49
cs := f .ClientSet
50
50
51
51
ginkgo .By ("creating a TCP service " + serviceName + " with type=LoadBalancer in namespace " + ns .Name )
52
- tcpService , err := jig .CreateTCPService (func (s * v1.Service ) {
52
+ _ , err := jig .CreateTCPService (func (s * v1.Service ) {
53
53
s .Spec .Type = v1 .ServiceTypeLoadBalancer
54
54
})
55
55
framework .ExpectNoError (err )
56
- tcpService , err = jig .WaitForLoadBalancer (e2eservice .GetServiceLoadBalancerCreationTimeout (cs ))
56
+ tcpService , err : = jig .WaitForLoadBalancer (e2eservice .GetServiceLoadBalancerCreationTimeout (cs ))
57
57
framework .ExpectNoError (err )
58
58
59
59
// Get info to hit it with
Original file line number Diff line number Diff line change @@ -38,10 +38,9 @@ const devicePath = "/mnt/volume1"
38
38
// formatted and mounted like a nil/Filesystem PV after a downgrade to a version
39
39
// where the BlockVolume feature is disabled
40
40
type VolumeModeDowngradeTest struct {
41
- pvSource * v1.PersistentVolumeSource
42
- pv * v1.PersistentVolume
43
- pvc * v1.PersistentVolumeClaim
44
- pod * v1.Pod
41
+ pv * v1.PersistentVolume
42
+ pvc * v1.PersistentVolumeClaim
43
+ pod * v1.Pod
45
44
}
46
45
47
46
// Name returns the tracking name of the test.
Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ func (t *SysctlUpgradeTest) verifySafeSysctlWork(f *framework.Framework) *v1.Pod
80
80
ginkgo .By ("Creating a pod with safe sysctls" )
81
81
safeSysctl := "net.ipv4.ip_local_port_range"
82
82
safeSysctlValue := "1024 1042"
83
- validPod := sysctlTestPod ("valid-sysctls" , map [string ]string {safeSysctl : safeSysctlValue })
84
- validPod = f .PodClient ().Create (t .validPod )
83
+ sysctlTestPod ("valid-sysctls" , map [string ]string {safeSysctl : safeSysctlValue })
84
+ validPod : = f .PodClient ().Create (t .validPod )
85
85
86
86
ginkgo .By ("Making sure the valid pod launches" )
87
87
ev , err := f .PodClient ().WaitForErrorEventOrSuccess (t .validPod )
You can’t perform that action at this time.
0 commit comments