-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathgcp.go
141 lines (120 loc) · 4.5 KB
/
gcp.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
package annotations
import (
"context"
"fmt"
"time"
configv1 "github.com/openshift/api/config/v1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/client/config"
"sigs.k8s.io/controller-runtime/pkg/envtest/komega"
"github.com/openshift/cluster-api-actuator-pkg/pkg/framework"
g "github.com/onsi/ginkgo/v2"
o "github.com/onsi/gomega"
)
var (
annotationsToTest = map[string][]string{
"traffic-policy.network.alpha.openshift.io/local-with-fallback": {"true"},
"alpha.cloud.google.com/load-balancer-backend-share": {""},
"networking.gke.io/internal-load-balancer-allow-global-access": {"true"},
"networking.gke.io/internal-load-balancer-subnet": {""},
"cloud.google.com/network-tier": {"Standard", "Premium", "InvalidValue"},
}
)
var cl client.Client
var _ = g.Describe("Service Annotation tests GCP", framework.LabelCCM, framework.LabelDisruptive, g.Ordered, func() {
var (
ctx context.Context
platform configv1.PlatformType
namespace string
createdServices []string
)
g.BeforeAll(func() {
cfg, err := config.GetConfig()
o.Expect(err).ToNot(o.HaveOccurred(), "Failed to GetConfig")
cl, err = client.New(cfg, client.Options{})
o.Expect(err).NotTo(o.HaveOccurred(), "Failed to create Kubernetes client for test")
komega.SetClient(cl)
ctx = framework.GetContext()
platform, err = framework.GetPlatform(ctx, cl)
fmt.Println("platform is ", platform)
o.Expect(err).ToNot(o.HaveOccurred(), "Failed to get platform")
if platform != configv1.GCPPlatformType {
g.Skip("Skipping GCP E2E tests")
}
namespace = "default"
})
g.AfterAll(func() {
for _, svcName := range createdServices {
service := &corev1.Service{
ObjectMeta: metav1.ObjectMeta{
Name: svcName,
Namespace: namespace,
},
}
_ = cl.Delete(ctx, service)
}
})
g.It("should validate annotations including network-tier and IP changes", func() {
g.By("Create service without annotations")
service := &corev1.Service{
ObjectMeta: metav1.ObjectMeta{
Name: "test-service-annotation-validation",
Namespace: namespace,
},
Spec: corev1.ServiceSpec{
Type: corev1.ServiceTypeLoadBalancer,
Selector: map[string]string{"app": "test"},
Ports: []corev1.ServicePort{{
Port: 80,
}},
},
}
o.Expect(cl.Create(ctx, service)).To(o.Succeed())
createdServices = append(createdServices, service.Name)
var lastIngressIP string
o.Eventually(func() (string, error) {
updatedService := &corev1.Service{}
err := cl.Get(ctx, client.ObjectKey{Name: service.Name, Namespace: namespace}, updatedService)
if err != nil {
return "", err
}
if len(updatedService.Status.LoadBalancer.Ingress) > 0 {
lastIngressIP = updatedService.Status.LoadBalancer.Ingress[0].IP
return lastIngressIP, nil
}
return "", nil
}, 2*time.Minute, 10*time.Second).ShouldNot(o.BeEmpty(), "LoadBalancer service did not get an external IP")
for key, values := range annotationsToTest {
for _, value := range values {
g.By(fmt.Sprintf("Adding annotation: %s=%s", key, value))
latestService := &corev1.Service{}
o.Expect(cl.Get(ctx, client.ObjectKey{Name: service.Name, Namespace: namespace}, latestService)).To(o.Succeed())
if latestService.Annotations == nil {
latestService.Annotations = make(map[string]string)
}
latestService.Annotations[key] = value
if key == "cloud.google.com/network-tier" && value != "Standard" && value != "Premium" {
o.Expect(cl.Update(ctx, latestService)).ToNot(o.Succeed(), "The annotation 'cloud.google.com/network-tier', if specified, must be either 'Standard' or 'Premium'")
continue
}
o.Expect(cl.Update(ctx, latestService)).To(o.Succeed())
if key == "cloud.google.com/network-tier" {
g.By(fmt.Sprintf("Validating Ingress IP change after annotation update: %s=%s", key, value))
o.Eventually(func() (string, error) {
updatedService := &corev1.Service{}
err := cl.Get(ctx, client.ObjectKey{Name: service.Name, Namespace: namespace}, updatedService)
if err != nil {
return "", err
}
if len(updatedService.Status.LoadBalancer.Ingress) > 0 {
return updatedService.Status.LoadBalancer.Ingress[0].IP, nil
}
return "", nil
}, 4*time.Minute, 10*time.Second).ShouldNot(o.Equal(lastIngressIP), "Ingress IP did not change after annotation update")
}
}
}
})
})