Skip to content

Commit aa15c8b

Browse files
committed
improved error reporting , namespace made openshift-machine-api
1 parent 9383e0a commit aa15c8b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pkg/annotations/gcp.go

+6-4
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,16 @@ var (
2929
}
3030
)
3131

32+
const (
33+
namespace = "openshift-machine-api"
34+
)
35+
3236
var cl client.Client
3337

3438
var _ = g.Describe("Service Annotation tests GCP", framework.LabelCCM, framework.LabelDisruptive, g.Ordered, func() {
3539
var (
3640
ctx context.Context
3741
platform configv1.PlatformType
38-
namespace string
3942
createdServices []string
4043
)
4144

@@ -54,7 +57,6 @@ var _ = g.Describe("Service Annotation tests GCP", framework.LabelCCM, framework
5457
g.Skip("Skipping GCP E2E tests")
5558
}
5659

57-
namespace = "default"
5860
})
5961

6062
g.AfterAll(func() {
@@ -92,7 +94,7 @@ var _ = g.Describe("Service Annotation tests GCP", framework.LabelCCM, framework
9294
updatedService := &corev1.Service{}
9395
err := cl.Get(ctx, client.ObjectKey{Name: service.Name, Namespace: namespace}, updatedService)
9496
if err != nil {
95-
return "", err
97+
return "", fmt.Errorf("failed to get updated service: %w", err)
9698
}
9799
if len(updatedService.Status.LoadBalancer.Ingress) > 0 {
98100
lastIngressIP = updatedService.Status.LoadBalancer.Ingress[0].IP
@@ -126,7 +128,7 @@ var _ = g.Describe("Service Annotation tests GCP", framework.LabelCCM, framework
126128
updatedService := &corev1.Service{}
127129
err := cl.Get(ctx, client.ObjectKey{Name: service.Name, Namespace: namespace}, updatedService)
128130
if err != nil {
129-
return "", err
131+
return "", fmt.Errorf("failed to get updated service: %w", err)
130132
}
131133
if len(updatedService.Status.LoadBalancer.Ingress) > 0 {
132134
return updatedService.Status.LoadBalancer.Ingress[0].IP, nil

0 commit comments

Comments
 (0)