@@ -29,13 +29,16 @@ var (
29
29
}
30
30
)
31
31
32
+ const (
33
+ namespace = "openshift-machine-api"
34
+ )
35
+
32
36
var cl client.Client
33
37
34
38
var _ = g .Describe ("Service Annotation tests GCP" , framework .LabelCCM , framework .LabelDisruptive , g .Ordered , func () {
35
39
var (
36
40
ctx context.Context
37
41
platform configv1.PlatformType
38
- namespace string
39
42
createdServices []string
40
43
)
41
44
@@ -54,7 +57,6 @@ var _ = g.Describe("Service Annotation tests GCP", framework.LabelCCM, framework
54
57
g .Skip ("Skipping GCP E2E tests" )
55
58
}
56
59
57
- namespace = "default"
58
60
})
59
61
60
62
g .AfterAll (func () {
@@ -92,7 +94,7 @@ var _ = g.Describe("Service Annotation tests GCP", framework.LabelCCM, framework
92
94
updatedService := & corev1.Service {}
93
95
err := cl .Get (ctx , client.ObjectKey {Name : service .Name , Namespace : namespace }, updatedService )
94
96
if err != nil {
95
- return "" , err
97
+ return "" , fmt . Errorf ( "failed to get updated service: %w" , err )
96
98
}
97
99
if len (updatedService .Status .LoadBalancer .Ingress ) > 0 {
98
100
lastIngressIP = updatedService .Status .LoadBalancer .Ingress [0 ].IP
@@ -126,7 +128,7 @@ var _ = g.Describe("Service Annotation tests GCP", framework.LabelCCM, framework
126
128
updatedService := & corev1.Service {}
127
129
err := cl .Get (ctx , client.ObjectKey {Name : service .Name , Namespace : namespace }, updatedService )
128
130
if err != nil {
129
- return "" , err
131
+ return "" , fmt . Errorf ( "failed to get updated service: %w" , err )
130
132
}
131
133
if len (updatedService .Status .LoadBalancer .Ingress ) > 0 {
132
134
return updatedService .Status .LoadBalancer .Ingress [0 ].IP , nil
0 commit comments