-
Notifications
You must be signed in to change notification settings - Fork 456
/
Copy pathpod_routes.go
172 lines (146 loc) · 6.11 KB
/
pod_routes.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
package pod
import (
"context"
"encoding/json"
"fmt"
"strings"
"time"
"github.com/onsi/ginkgo/v2"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
apiv1 "github.com/kubeovn/kube-ovn/pkg/apis/kubeovn/v1"
"github.com/kubeovn/kube-ovn/pkg/request"
"github.com/kubeovn/kube-ovn/pkg/util"
"github.com/kubeovn/kube-ovn/test/e2e/framework"
"github.com/kubeovn/kube-ovn/test/e2e/framework/iproute"
)
var _ = framework.SerialDescribe("[group:pod]", func() {
f := framework.NewDefaultFramework("pod")
var podClient *framework.PodClient
var subnetClient *framework.SubnetClient
var namespaceName, subnetName, podName string
var cidr string
ginkgo.BeforeEach(func() {
podClient = f.PodClient()
subnetClient = f.SubnetClient()
namespaceName = f.Namespace.Name
subnetName = "subnet-" + framework.RandomSuffix()
podName = "pod-" + framework.RandomSuffix()
cidr = framework.RandomCIDR(f.ClusterIPFamily)
})
ginkgo.AfterEach(func() {
ginkgo.By("Deleting pod " + podName)
podClient.DeleteSync(podName)
ginkgo.By("Deleting subnet " + subnetName)
subnetClient.DeleteSync(subnetName)
})
framework.ConformanceIt("should support north gateway via pod annotation", func() {
f.SkipVersionPriorTo(1, 12, "This feature was introduced in v1.12")
if f.ClusterNetworkMode == "underlay" {
ginkgo.Skip("This test is only for overlay network")
}
ginkgo.By("Creating pod " + podName + " with north gateway annotation")
northGateway := "100.64.0.100"
ipSuffix := "ip4"
if f.ClusterIPFamily == "ipv6" {
northGateway = "fd00:100:64::100"
ipSuffix = "ip6"
}
annotations := map[string]string{
util.NorthGatewayAnnotation: northGateway,
}
cmd := []string{"sleep", "infinity"}
pod := framework.MakePod(namespaceName, podName, nil, annotations, f.KubeOVNImage, cmd, nil)
pod = podClient.CreateSync(pod)
podIP := pod.Status.PodIP
nbCmd := fmt.Sprintf("ovn-nbctl --format=csv --data=bare --no-heading --columns=match,action,nexthops find logical_router_policy priority=%d", util.NorthGatewayRoutePolicyPriority)
out, _, err := framework.NBExec(nbCmd)
framework.ExpectNoError(err)
framework.ExpectEqual(strings.TrimSpace(string(out)), fmt.Sprintf("%s.src == %s,reroute,%s", ipSuffix, podIP, northGateway))
ginkgo.By("Deleting pod " + podName + " with north gateway annotation")
f.PodClientNS(namespaceName).DeleteSync(podName)
framework.WaitUntil(2*time.Second, 2*time.Minute, func(_ context.Context) (bool, error) {
out, _, err = framework.NBExec(nbCmd)
if err == nil && strings.TrimSpace(string(out)) == "" {
return true, nil
}
return false, err
}, "policy has been gc")
ginkgo.By("gc policy route")
podClient.CreateSync(framework.MakePod(namespaceName, podName, nil, annotations, f.KubeOVNImage, cmd, nil))
ginkgo.By("restart kube-ovn-controller")
deployClient := f.DeploymentClientNS(framework.KubeOvnNamespace)
deploy := deployClient.Get("kube-ovn-controller")
framework.ExpectNotNil(deploy.Spec.Replicas)
deployClient.SetScale(deploy.Name, 0)
deployClient.RolloutStatus(deploy.Name)
f.PodClientNS(namespaceName).DeleteSync(podName)
deployClient.SetScale(deploy.Name, 1)
deployClient.RolloutStatus(deploy.Name)
framework.WaitUntil(2*time.Second, 2*time.Minute, func(_ context.Context) (bool, error) {
out, _, err = framework.NBExec(nbCmd)
if err == nil && strings.TrimSpace(string(out)) == "" {
return true, nil
}
return false, err
}, "policy has been gc")
ginkgo.By("remove legacy lsp")
deleteLspCmd := fmt.Sprintf("ovn-nbctl --if-exists lsp-del %s.%s", pod.Name, pod.Namespace)
_, _, err = framework.NBExec(deleteLspCmd)
framework.ExpectNoError(err)
err = f.KubeOVNClientSet.KubeovnV1().IPs().Delete(context.Background(), fmt.Sprintf("%s.%s", pod.Name, pod.Namespace), metav1.DeleteOptions{})
})
framework.ConformanceIt("should support configuring routes via pod annotation", func() {
f.SkipVersionPriorTo(1, 12, "This feature was introduced in v1.12")
ginkgo.By("Generating routes")
routes := make([]request.Route, 0, 4)
for _, s := range strings.Split(cidr, ",") {
gw, err := util.LastIP(s)
framework.ExpectNoError(err)
var dst string
switch util.CheckProtocol(gw) {
case apiv1.ProtocolIPv4:
dst = "114.114.114.0/26"
case apiv1.ProtocolIPv6:
dst = "2400:3200::/126"
}
routes = append(routes, request.Route{Gateway: gw}, request.Route{Gateway: framework.PrevIP(gw), Destination: dst})
}
buff, err := json.Marshal(routes)
framework.ExpectNoError(err)
ginkgo.By("Creating subnet " + subnetName)
subnet := framework.MakeSubnet(subnetName, "", cidr, "", "", "", nil, nil, []string{namespaceName})
subnet = subnetClient.CreateSync(subnet)
ginkgo.By("Creating pod " + podName)
annotations := map[string]string{
util.RoutesAnnotation: string(buff),
}
cmd := []string{"sleep", "infinity"}
pod := framework.MakePrivilegedPod(namespaceName, podName, nil, annotations, f.KubeOVNImage, cmd, nil)
pod = podClient.CreateSync(pod)
ginkgo.By("Validating pod annotations")
framework.ExpectHaveKeyWithValue(pod.Annotations, util.AllocatedAnnotation, "true")
framework.ExpectHaveKeyWithValue(pod.Annotations, util.CidrAnnotation, subnet.Spec.CIDRBlock)
framework.ExpectHaveKeyWithValue(pod.Annotations, util.GatewayAnnotation, subnet.Spec.Gateway)
framework.ExpectHaveKeyWithValue(pod.Annotations, util.LogicalSwitchAnnotation, subnet.Name)
framework.ExpectMAC(pod.Annotations[util.MacAddressAnnotation])
framework.ExpectHaveKeyWithValue(pod.Annotations, util.RoutedAnnotation, "true")
ginkgo.By("Getting pod routes")
podRoutes, err := iproute.RouteShow("", "eth0", func(cmd ...string) ([]byte, []byte, error) {
return framework.KubectlExec(pod.Namespace, pod.Name, cmd...)
})
framework.ExpectNoError(err)
ginkgo.By("Validating pod routes")
actualRoutes := make([]request.Route, 0, len(podRoutes))
for _, r := range podRoutes {
if r.Gateway != "" || r.Dst != "" {
actualRoutes = append(actualRoutes, request.Route{Destination: r.Dst, Gateway: r.Gateway})
}
}
for _, r := range routes {
if r.Destination == "" {
r.Destination = "default"
}
framework.ExpectContainElement(actualRoutes, r)
}
})
})