201 lines
7.0 KiB
Go
201 lines
7.0 KiB
Go
/*
|
|
Copyright 2020 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package network
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/onsi/ginkgo"
|
|
v1 "k8s.io/api/core/v1"
|
|
discoveryv1 "k8s.io/api/discovery/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
clientset "k8s.io/client-go/kubernetes"
|
|
"k8s.io/kubernetes/test/e2e/framework"
|
|
"k8s.io/kubernetes/test/e2e/network/common"
|
|
)
|
|
|
|
var _ = common.SIGDescribe("EndpointSliceMirroring", func() {
|
|
f := framework.NewDefaultFramework("endpointslicemirroring")
|
|
|
|
var cs clientset.Interface
|
|
|
|
ginkgo.BeforeEach(func() {
|
|
cs = f.ClientSet
|
|
})
|
|
|
|
/*
|
|
Release: v1.21
|
|
Testname: EndpointSlice Mirroring
|
|
Description: The discovery.k8s.io API group MUST exist in the /apis discovery document.
|
|
The discovery.k8s.io/v1 API group/version MUST exist in the /apis/discovery.k8s.io discovery document.
|
|
The endpointslices resource MUST exist in the /apis/discovery.k8s.io/v1 discovery document.
|
|
The endpointslices mirrorowing must mirror endpoint create, update, and delete actions.
|
|
*/
|
|
framework.ConformanceIt("should mirror a custom Endpoints resource through create update and delete", func() {
|
|
svc := createServiceReportErr(cs, f.Namespace.Name, &v1.Service{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "example-custom-endpoints",
|
|
},
|
|
Spec: v1.ServiceSpec{
|
|
Ports: []v1.ServicePort{{
|
|
Name: "example",
|
|
Port: 80,
|
|
Protocol: v1.ProtocolTCP,
|
|
}},
|
|
},
|
|
})
|
|
|
|
endpoints := &v1.Endpoints{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: svc.Name,
|
|
},
|
|
Subsets: []v1.EndpointSubset{{
|
|
Ports: []v1.EndpointPort{{
|
|
Port: 80,
|
|
}},
|
|
Addresses: []v1.EndpointAddress{{
|
|
IP: "10.1.2.3",
|
|
}},
|
|
}},
|
|
}
|
|
|
|
ginkgo.By("mirroring a new custom Endpoint", func() {
|
|
_, err := cs.CoreV1().Endpoints(f.Namespace.Name).Create(context.TODO(), endpoints, metav1.CreateOptions{})
|
|
framework.ExpectNoError(err, "Unexpected error creating Endpoints")
|
|
|
|
if err := wait.PollImmediate(2*time.Second, 12*time.Second, func() (bool, error) {
|
|
esList, err := cs.DiscoveryV1().EndpointSlices(f.Namespace.Name).List(context.TODO(), metav1.ListOptions{
|
|
LabelSelector: discoveryv1.LabelServiceName + "=" + svc.Name,
|
|
})
|
|
if err != nil {
|
|
framework.Logf("Error listing EndpointSlices: %v", err)
|
|
return false, nil
|
|
}
|
|
if len(esList.Items) == 0 {
|
|
framework.Logf("Waiting for at least 1 EndpointSlice to exist, got %d", len(esList.Items))
|
|
return false, nil
|
|
}
|
|
|
|
// Due to informer caching, it's possible for the controller
|
|
// to create a second EndpointSlice if it does not see the
|
|
// first EndpointSlice that was created during a sync. All
|
|
// EndpointSlices created should be valid though.
|
|
for _, epSlice := range esList.Items {
|
|
if len(epSlice.Ports) != 1 {
|
|
return false, fmt.Errorf("Expected EndpointSlice to have 1 Port, got %d", len(epSlice.Ports))
|
|
}
|
|
port := epSlice.Ports[0]
|
|
if *port.Port != int32(80) {
|
|
return false, fmt.Errorf("Expected port to be 80, got %d", *port.Port)
|
|
}
|
|
if len(epSlice.Endpoints) != 1 {
|
|
return false, fmt.Errorf("Expected EndpointSlice to have 1 endpoints, got %d", len(epSlice.Endpoints))
|
|
}
|
|
endpoint := epSlice.Endpoints[0]
|
|
if len(endpoint.Addresses) != 1 {
|
|
return false, fmt.Errorf("Expected EndpointSlice endpoint to have 1 address, got %d", len(endpoint.Addresses))
|
|
}
|
|
address := endpoint.Addresses[0]
|
|
if address != "10.1.2.3" {
|
|
return false, fmt.Errorf("Expected EndpointSlice to have 10.1.2.3 as address, got %s", address)
|
|
}
|
|
}
|
|
|
|
return true, nil
|
|
}); err != nil {
|
|
framework.Failf("Did not find matching EndpointSlice for %s/%s: %s", svc.Namespace, svc.Name, err)
|
|
}
|
|
})
|
|
|
|
ginkgo.By("mirroring an update to a custom Endpoint", func() {
|
|
endpoints.Subsets[0].Addresses = []v1.EndpointAddress{{
|
|
IP: "10.2.3.4",
|
|
}}
|
|
_, err := cs.CoreV1().Endpoints(f.Namespace.Name).Update(context.TODO(), endpoints, metav1.UpdateOptions{})
|
|
framework.ExpectNoError(err, "Unexpected error updating Endpoints")
|
|
|
|
// Expect mirrored EndpointSlice resource to be updated.
|
|
if err := wait.PollImmediate(2*time.Second, 12*time.Second, func() (bool, error) {
|
|
esList, err := cs.DiscoveryV1().EndpointSlices(f.Namespace.Name).List(context.TODO(), metav1.ListOptions{
|
|
LabelSelector: discoveryv1.LabelServiceName + "=" + svc.Name,
|
|
})
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
if len(esList.Items) != 1 {
|
|
framework.Logf("Waiting for 1 EndpointSlice to exist, got %d", len(esList.Items))
|
|
return false, nil
|
|
}
|
|
epSlice := esList.Items[0]
|
|
if len(epSlice.Ports) != 1 {
|
|
framework.Logf("Expected EndpointSlice to have 1 Port, got %d", len(epSlice.Ports))
|
|
return false, nil
|
|
}
|
|
port := epSlice.Ports[0]
|
|
if *port.Port != int32(80) {
|
|
framework.Logf("Expected port to be 80, got %d", *port.Port)
|
|
return false, nil
|
|
}
|
|
if len(epSlice.Endpoints) != 1 {
|
|
framework.Logf("Expected EndpointSlice to have 1 endpoints, got %d", len(epSlice.Endpoints))
|
|
return false, nil
|
|
}
|
|
endpoint := epSlice.Endpoints[0]
|
|
if len(endpoint.Addresses) != 1 {
|
|
framework.Logf("Expected EndpointSlice endpoint to have 1 address, got %d", len(endpoint.Addresses))
|
|
return false, nil
|
|
}
|
|
address := endpoint.Addresses[0]
|
|
if address != "10.2.3.4" {
|
|
framework.Logf("Expected EndpointSlice to have 10.2.3.4 as address, got %s", address)
|
|
return false, nil
|
|
}
|
|
|
|
return true, nil
|
|
}); err != nil {
|
|
framework.Failf("Did not find matching EndpointSlice for %s/%s: %s", svc.Namespace, svc.Name, err)
|
|
}
|
|
})
|
|
|
|
ginkgo.By("mirroring deletion of a custom Endpoint", func() {
|
|
err := cs.CoreV1().Endpoints(f.Namespace.Name).Delete(context.TODO(), endpoints.Name, metav1.DeleteOptions{})
|
|
framework.ExpectNoError(err, "Unexpected error deleting Endpoints")
|
|
|
|
// Expect mirrored EndpointSlice resource to be updated.
|
|
if err := wait.PollImmediate(2*time.Second, 12*time.Second, func() (bool, error) {
|
|
esList, err := cs.DiscoveryV1().EndpointSlices(f.Namespace.Name).List(context.TODO(), metav1.ListOptions{
|
|
LabelSelector: discoveryv1.LabelServiceName + "=" + svc.Name,
|
|
})
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
if len(esList.Items) != 0 {
|
|
framework.Logf("Waiting for 0 EndpointSlices to exist, got %d", len(esList.Items))
|
|
return false, nil
|
|
}
|
|
|
|
return true, nil
|
|
}); err != nil {
|
|
framework.Failf("Did not find matching EndpointSlice for %s/%s: %s", svc.Namespace, svc.Name, err)
|
|
}
|
|
})
|
|
})
|
|
})
|