mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/kube-vip/kube-vip.git
synced 2026-09-20 08:03:47 +08:00
* fix(kubevip): reject out-of-range routing protocol values Netlink carries the address and route protocol in a single byte, so a configured value above 255 was silently truncated on the wire and never matched again on readback. Reject it during config validation instead. Signed-off-by: Marcel Fest <marcel.fest@telekom.de> * feat(wireguard): qualify service tunnel IDs by protocol Sanitisation maps '-' onto the '_' separator, so "a-b/c" and "a/b-c" shared one nftables chain, and TCP and UDP on the same port collided. ServicePortIDs appends the protocol and, when sanitisation changed the name or the ID grew too long, a hash of the raw name. It also returns the previous port-only ID so existing chains can be migrated. Signed-off-by: Marcel Fest <marcel.fest@telekom.de> * fix(arp): guard manager state behind a single mutex Instances were kept in a sync.Map with a per-instance mutex for the refcount, so lookup and refcount update were not atomic: concurrent Insert and Remove could resurrect a deleted instance or drop a live one. Hold one manager mutex across both, and buffer link subscriptions so a netlink sender is never parked on an unread channel during shutdown. Signed-off-by: Marcel Fest <marcel.fest@telekom.de> * fix(instance): roll back partially created instances Instance creation added addresses, VLAN or macvlan links and DHCP clients incrementally, so a failure part way through left the node holding state nobody owned. Initialization now unwinds what it created, and link cleanup only deletes attachments this instance created that no remaining instance still uses. Namespace-dependent tests now skip unless KUBE_VIP_REQUIRE_NETNS is set, which CI sets on the privileged job so lost capabilities turn it red instead of silently skipping. Signed-off-by: Marcel Fest <marcel.fest@telekom.de> * test(e2e): give docker kill more time under parallel load The ARP suite runs four kind clusters against one Docker daemon, so acknowledging a leader kill regularly exceeded the 5s budget and failed the IPv6 failover specs before any assertion ran. Signed-off-by: Marcel Fest <marcel.fest@telekom.de> * fix: regression on preserveOnLeadershipLoss Signed-off-by: Marcel Fest <marcel.fest@telekom.de> * fix: use the introduced wireguard service_id Signed-off-by: Marcel Fest <marcel.fest@telekom.de> * fix(services): reuse link attachment ownership on service delete deleteService removed VLAN and macvlan links unconditionally, which tore down interfaces kube-vip had only adopted and interfaces another Service still used. Route the delete path through CleanupLinkAttachments and pass the remaining instances so ownership is handed over instead. Signed-off-by: Marcel Fest <marcel.fest@telekom.de> --------- Signed-off-by: Marcel Fest <marcel.fest@telekom.de>
493 lines
16 KiB
Go
493 lines
16 KiB
Go
package endpoints
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
"sync/atomic"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/kube-vip/kube-vip/pkg/endpoints/providers"
|
|
"github.com/kube-vip/kube-vip/pkg/instance"
|
|
"github.com/kube-vip/kube-vip/pkg/kubevip"
|
|
"github.com/kube-vip/kube-vip/pkg/lease"
|
|
"github.com/kube-vip/kube-vip/pkg/metrics"
|
|
"github.com/kube-vip/kube-vip/pkg/servicecontext"
|
|
"github.com/prometheus/client_golang/prometheus/testutil"
|
|
v1 "k8s.io/api/core/v1"
|
|
discoveryv1 "k8s.io/api/discovery/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/watch"
|
|
"k8s.io/client-go/kubernetes"
|
|
)
|
|
|
|
func TestShouldAllowReconcileWithoutEndpoints(t *testing.T) {
|
|
if shouldAllowReconcileWithoutEndpoints(nil) {
|
|
t.Fatal("nil service should not be allowed")
|
|
}
|
|
|
|
clusterOptIn := &v1.Service{
|
|
Spec: v1.ServiceSpec{ExternalTrafficPolicy: v1.ServiceExternalTrafficPolicyTypeCluster},
|
|
ObjectMeta: metav1.ObjectMeta{Annotations: map[string]string{kubevip.AllowReconcileWithoutEndpoints: "true"}},
|
|
}
|
|
if !shouldAllowReconcileWithoutEndpoints(clusterOptIn) {
|
|
t.Fatal("cluster service with opt-in annotation should be allowed")
|
|
}
|
|
|
|
localOptIn := &v1.Service{
|
|
Spec: v1.ServiceSpec{ExternalTrafficPolicy: v1.ServiceExternalTrafficPolicyTypeLocal},
|
|
ObjectMeta: metav1.ObjectMeta{Annotations: map[string]string{kubevip.AllowReconcileWithoutEndpoints: "true"}},
|
|
}
|
|
if shouldAllowReconcileWithoutEndpoints(localOptIn) {
|
|
t.Fatal("local service should not be allowed")
|
|
}
|
|
}
|
|
|
|
type fakeWorker struct {
|
|
endpoints []string
|
|
clearCalled bool
|
|
processCalled bool
|
|
}
|
|
|
|
type annotationUpdate struct {
|
|
endpoint string
|
|
endpointIPv6 string
|
|
}
|
|
|
|
type recordingProvider struct {
|
|
providers.Provider
|
|
updates []annotationUpdate
|
|
}
|
|
|
|
func (p *recordingProvider) UpdateServiceAnnotation(_ context.Context, endpoint, endpointIPv6 string,
|
|
_ *v1.Service, _ *kubernetes.Clientset) error {
|
|
p.updates = append(p.updates, annotationUpdate{endpoint: endpoint, endpointIPv6: endpointIPv6})
|
|
return nil
|
|
}
|
|
|
|
func TestUpdateAnnotationsZeroEndpointsThenSameEndpoint(t *testing.T) {
|
|
for _, enableEndpoints := range []bool{true, false} {
|
|
providerName := "EndpointSlices"
|
|
provider := providers.NewEndpointslices()
|
|
if enableEndpoints {
|
|
providerName = "Endpoints"
|
|
provider = providers.NewEndpoints()
|
|
}
|
|
|
|
for _, family := range []struct {
|
|
name string
|
|
endpoint string
|
|
other string
|
|
egressIPv6 bool
|
|
}{
|
|
{name: "IPv4", endpoint: "10.0.0.1", other: "fd00::1"},
|
|
{name: "IPv6", endpoint: "fd00::1", other: "10.0.0.1", egressIPv6: true},
|
|
} {
|
|
t.Run(providerName+"/"+family.name, func(t *testing.T) {
|
|
annotations := map[string]string{kubevip.Egress: "true"}
|
|
if family.egressIPv6 {
|
|
annotations[kubevip.EgressIPv6] = "true"
|
|
}
|
|
if !enableEndpoints {
|
|
if family.egressIPv6 {
|
|
annotations[kubevip.ActiveEndpoint] = family.other
|
|
annotations[kubevip.ActiveEndpointIPv6] = family.endpoint
|
|
} else {
|
|
annotations[kubevip.ActiveEndpoint] = family.endpoint
|
|
annotations[kubevip.ActiveEndpointIPv6] = family.other
|
|
}
|
|
} else {
|
|
annotations[kubevip.ActiveEndpoint] = family.endpoint
|
|
}
|
|
service := &v1.Service{ObjectMeta: metav1.ObjectMeta{
|
|
Name: "test-service", Namespace: "default", UID: "test-uid", Annotations: annotations,
|
|
}}
|
|
serviceInstance := &instance.Instance{ServiceUID: service.UID, ServiceSnapshot: service.DeepCopy()}
|
|
instances := []*instance.Instance{serviceInstance}
|
|
recorder := &recordingProvider{Provider: provider}
|
|
processor := &Processor{
|
|
config: &kubevip.Config{EnableEndpoints: enableEndpoints},
|
|
provider: recorder,
|
|
instances: &instances,
|
|
}
|
|
|
|
updateSnapshot := func(_ context.Context, updated *v1.Service) error {
|
|
serviceInstance.ServiceSnapshot = updated
|
|
return nil
|
|
}
|
|
|
|
noEndpoint := ""
|
|
processor.updateAnnotations(service, &noEndpoint, nil, updateSnapshot)
|
|
repopulatedEndpoint := family.endpoint
|
|
processor.updateAnnotations(service, &repopulatedEndpoint, nil, updateSnapshot)
|
|
|
|
cleared := annotationUpdate{}
|
|
repopulated := annotationUpdate{endpoint: family.endpoint}
|
|
if !enableEndpoints {
|
|
if family.egressIPv6 {
|
|
cleared = annotationUpdate{endpoint: family.other}
|
|
repopulated = annotationUpdate{endpoint: family.other, endpointIPv6: family.endpoint}
|
|
} else {
|
|
cleared = annotationUpdate{endpointIPv6: family.other}
|
|
repopulated = annotationUpdate{endpoint: family.endpoint, endpointIPv6: family.other}
|
|
}
|
|
}
|
|
want := []annotationUpdate{cleared, repopulated}
|
|
if len(recorder.updates) != len(want) {
|
|
t.Fatalf("annotation updates = %+v, want %+v", recorder.updates, want)
|
|
}
|
|
for index := range want {
|
|
if recorder.updates[index] != want[index] {
|
|
t.Errorf("annotation update %d = %+v, want %+v", index, recorder.updates[index], want[index])
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestUpdateAnnotationsEndpointSlicesClearsConfiguredFamily(t *testing.T) {
|
|
for _, test := range []struct {
|
|
name string
|
|
egressIPv6 bool
|
|
want annotationUpdate
|
|
}{
|
|
{name: "IPv4", want: annotationUpdate{endpointIPv6: "fd00::1"}},
|
|
{name: "IPv6", egressIPv6: true, want: annotationUpdate{endpoint: "10.0.0.1"}},
|
|
} {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
annotations := map[string]string{
|
|
kubevip.Egress: "true",
|
|
kubevip.ActiveEndpoint: "10.0.0.1",
|
|
kubevip.ActiveEndpointIPv6: "fd00::1",
|
|
}
|
|
if test.egressIPv6 {
|
|
annotations[kubevip.EgressIPv6] = "true"
|
|
}
|
|
service := &v1.Service{ObjectMeta: metav1.ObjectMeta{
|
|
Name: "test-service", Namespace: "default", UID: "test-uid", Annotations: annotations,
|
|
}}
|
|
instances := []*instance.Instance{{ServiceUID: service.UID, ServiceSnapshot: service.DeepCopy()}}
|
|
recorder := &recordingProvider{Provider: providers.NewEndpointslices()}
|
|
processor := &Processor{
|
|
config: &kubevip.Config{EnableEndpoints: false},
|
|
provider: recorder,
|
|
instances: &instances,
|
|
}
|
|
|
|
noEndpoint := ""
|
|
processor.updateAnnotations(service, &noEndpoint, nil, func(context.Context, *v1.Service) error { return nil })
|
|
|
|
if len(recorder.updates) != 1 || recorder.updates[0] != test.want {
|
|
t.Fatalf("annotation updates = %+v, want [%+v]", recorder.updates, test.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestUpdateAnnotationsValidatesEndpointFamily(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
endpoint string
|
|
egressIPv6 bool
|
|
want annotationUpdate
|
|
wantUpdate bool
|
|
}{
|
|
{name: "invalid address", endpoint: "not-an-ip"},
|
|
{name: "IPv6 endpoint for IPv4 egress", endpoint: "fd00::1"},
|
|
{name: "IPv4 endpoint for IPv6 egress", endpoint: "10.0.0.1", egressIPv6: true},
|
|
{name: "IPv4 endpoint", endpoint: "10.0.0.2", want: annotationUpdate{endpoint: "10.0.0.2", endpointIPv6: "fd00::1"}, wantUpdate: true},
|
|
{name: "IPv6 endpoint", endpoint: "fd00::2", egressIPv6: true, want: annotationUpdate{endpoint: "10.0.0.1", endpointIPv6: "fd00::2"}, wantUpdate: true},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
annotations := map[string]string{
|
|
kubevip.Egress: "true",
|
|
kubevip.ActiveEndpoint: "10.0.0.1",
|
|
kubevip.ActiveEndpointIPv6: "fd00::1",
|
|
}
|
|
if test.egressIPv6 {
|
|
annotations[kubevip.EgressIPv6] = "true"
|
|
}
|
|
service := &v1.Service{ObjectMeta: metav1.ObjectMeta{
|
|
Name: "test-service", Namespace: "default", Annotations: annotations,
|
|
}}
|
|
recorder := &recordingProvider{Provider: providers.NewEndpointslices()}
|
|
processor := &Processor{
|
|
config: &kubevip.Config{EnableEndpoints: false},
|
|
provider: recorder,
|
|
}
|
|
|
|
processor.updateAnnotations(service, &test.endpoint, nil, nil)
|
|
|
|
if !test.wantUpdate {
|
|
if len(recorder.updates) != 0 {
|
|
t.Fatalf("annotation updates = %+v, want none", recorder.updates)
|
|
}
|
|
return
|
|
}
|
|
if len(recorder.updates) != 1 || recorder.updates[0] != test.want {
|
|
t.Fatalf("annotation updates = %+v, want [%+v]", recorder.updates, test.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func (f *fakeWorker) processInstance(_ *servicecontext.Context, _ *v1.Service) error {
|
|
f.processCalled = true
|
|
return nil
|
|
}
|
|
|
|
func (f *fakeWorker) clear(_ *servicecontext.Context, _ *string, _ *v1.Service) {
|
|
f.clearCalled = true
|
|
}
|
|
|
|
func (f *fakeWorker) getEndpoints(_ *v1.Service, _ string) ([]string, error) { return f.endpoints, nil }
|
|
func (f *fakeWorker) removeEgress(_ *v1.Service, _ *string) {}
|
|
func (f *fakeWorker) setInstanceEndpointsStatus(_ context.Context, _ *v1.Service, _ []string) error {
|
|
return nil
|
|
}
|
|
|
|
// TestReconcile_RecomputesRemainingEndpoints asserts that deleting one EndpointSlice
|
|
// reconciles against the endpoints that remain, instead of assuming the service
|
|
// lost all of them.
|
|
func TestReconcile_RecomputesRemainingEndpoints(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
name string
|
|
remaining []string
|
|
lastKnown string
|
|
expectReady bool
|
|
expectClear bool
|
|
expectProcess bool
|
|
expectedLastKnown string
|
|
}{
|
|
{
|
|
name: "remaining endpoints keep the service up",
|
|
remaining: []string{"10.0.0.2"},
|
|
lastKnown: "10.0.0.2",
|
|
expectReady: true,
|
|
expectProcess: true,
|
|
expectedLastKnown: "10.0.0.2",
|
|
},
|
|
{
|
|
name: "stale last known endpoint moves to a survivor",
|
|
remaining: []string{"10.0.0.2"},
|
|
lastKnown: "10.0.0.1",
|
|
expectReady: true,
|
|
expectProcess: true,
|
|
expectedLastKnown: "10.0.0.2",
|
|
},
|
|
{
|
|
name: "last endpoint removed tears the service down",
|
|
remaining: nil,
|
|
lastKnown: "10.0.0.1",
|
|
expectReady: false,
|
|
expectClear: true,
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
worker := &fakeWorker{endpoints: test.remaining}
|
|
p := &Processor{
|
|
config: &kubevip.Config{},
|
|
provider: providers.NewEndpointslices(),
|
|
worker: worker,
|
|
}
|
|
|
|
svcCtx := servicecontext.New(context.Background())
|
|
svcCtx.SignalReadiness()
|
|
|
|
lastKnown := test.lastKnown
|
|
restart, err := p.Reconcile(
|
|
svcCtx,
|
|
watch.Event{
|
|
Type: watch.Deleted,
|
|
Object: &discoveryv1.EndpointSlice{ObjectMeta: metav1.ObjectMeta{Name: "slice-1"}},
|
|
},
|
|
&lastKnown,
|
|
&v1.Service{Spec: v1.ServiceSpec{ExternalTrafficPolicy: v1.ServiceExternalTrafficPolicyTypeLocal}},
|
|
"node-1",
|
|
func(*servicecontext.Context, *v1.Service, *sync.WaitGroup, bool) error { return nil },
|
|
&sync.WaitGroup{},
|
|
nil,
|
|
nil,
|
|
)
|
|
if err != nil {
|
|
t.Fatalf("Reconcile returned error: %v", err)
|
|
}
|
|
if restart {
|
|
t.Fatal("Reconcile unexpectedly requested restart")
|
|
}
|
|
|
|
if ready := svcCtx.Signalled.Load(); ready != test.expectReady {
|
|
t.Fatalf("readiness mismatch: expected %v, got %v", test.expectReady, ready)
|
|
}
|
|
if worker.clearCalled != test.expectClear {
|
|
t.Fatalf("clearCalled mismatch: expected %v, got %v", test.expectClear, worker.clearCalled)
|
|
}
|
|
if worker.processCalled != test.expectProcess {
|
|
t.Fatalf("processCalled mismatch: expected %v, got %v", test.expectProcess, worker.processCalled)
|
|
}
|
|
if test.expectedLastKnown != "" && lastKnown != test.expectedLastKnown {
|
|
t.Fatalf("lastKnownGoodEndpoint mismatch: expected %q, got %q", test.expectedLastKnown, lastKnown)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestReconcile_ZeroEndpointsBehavior(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
run := func(t *testing.T, service *v1.Service, presetSignalled bool, expectReady bool, expectClear bool, expectProcess bool) {
|
|
t.Helper()
|
|
|
|
worker := &fakeWorker{endpoints: []string{}}
|
|
p := &Processor{
|
|
config: &kubevip.Config{},
|
|
provider: providers.NewEndpointslices(),
|
|
worker: worker,
|
|
}
|
|
|
|
svcCtx := servicecontext.New(context.Background())
|
|
if presetSignalled {
|
|
svcCtx.SignalReadiness()
|
|
}
|
|
|
|
restart, err := p.Reconcile(
|
|
svcCtx,
|
|
watch.Event{Type: watch.Modified, Object: &discoveryv1.EndpointSlice{}},
|
|
new(string),
|
|
service,
|
|
"node-1",
|
|
func(*servicecontext.Context, *v1.Service, *sync.WaitGroup, bool) error { return nil },
|
|
&sync.WaitGroup{},
|
|
nil,
|
|
nil,
|
|
)
|
|
if err != nil {
|
|
t.Fatalf("Reconcile returned error: %v", err)
|
|
}
|
|
if restart {
|
|
t.Fatal("Reconcile unexpectedly requested restart")
|
|
}
|
|
|
|
if ready := svcCtx.Signalled.Load(); ready != expectReady {
|
|
t.Fatalf("readiness mismatch: expected %v, got %v", expectReady, ready)
|
|
}
|
|
if worker.clearCalled != expectClear {
|
|
t.Fatalf("clearCalled mismatch: expected %v, got %v", expectClear, worker.clearCalled)
|
|
}
|
|
if worker.processCalled != expectProcess {
|
|
t.Fatalf("processCalled mismatch: expected %v, got %v", expectProcess, worker.processCalled)
|
|
}
|
|
}
|
|
|
|
t.Run("cluster opt-in keeps readiness and skips clear", func(t *testing.T) {
|
|
service := &v1.Service{
|
|
ObjectMeta: metav1.ObjectMeta{Annotations: map[string]string{kubevip.AllowReconcileWithoutEndpoints: "true"}},
|
|
Spec: v1.ServiceSpec{ExternalTrafficPolicy: v1.ServiceExternalTrafficPolicyTypeCluster},
|
|
}
|
|
run(t, service, false, true, false, true)
|
|
})
|
|
|
|
t.Run("cluster without opt-in resets and clears when pre-signalled", func(t *testing.T) {
|
|
service := &v1.Service{
|
|
ObjectMeta: metav1.ObjectMeta{Annotations: map[string]string{}},
|
|
Spec: v1.ServiceSpec{ExternalTrafficPolicy: v1.ServiceExternalTrafficPolicyTypeCluster},
|
|
}
|
|
run(t, service, true, false, true, false)
|
|
})
|
|
|
|
t.Run("local opt-in still resets and clears when pre-signalled", func(t *testing.T) {
|
|
service := &v1.Service{
|
|
ObjectMeta: metav1.ObjectMeta{Annotations: map[string]string{kubevip.AllowReconcileWithoutEndpoints: "true"}},
|
|
Spec: v1.ServiceSpec{ExternalTrafficPolicy: v1.ServiceExternalTrafficPolicyTypeLocal},
|
|
}
|
|
run(t, service, true, false, true, false)
|
|
})
|
|
}
|
|
|
|
// TestReconcile_ServicesElectionStartsOnce asserts that repeated endpoint events
|
|
// for the same service start the leader-election restart loop exactly once.
|
|
//
|
|
// Reconcile runs on every EndpointSlice add/modify/resync event, and the loop it
|
|
// starts only returns once the service context is cancelled. Starting it per event
|
|
// therefore accumulates duplicate goroutines that all contend on the same lease.
|
|
//
|
|
// See https://github.com/kube-vip/kube-vip/issues/1665.
|
|
func TestReconcile_ServicesElectionStartsOnce(t *testing.T) {
|
|
config := &kubevip.Config{
|
|
EnableServicesElection: true,
|
|
LeaderElectionType: "kubernetes",
|
|
}
|
|
|
|
service := &v1.Service{
|
|
ObjectMeta: metav1.ObjectMeta{Name: "test-svc", Namespace: "default", UID: "test-uid"},
|
|
Spec: v1.ServiceSpec{Type: v1.ServiceTypeLoadBalancer},
|
|
}
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
|
|
leaseMgr := lease.NewManager()
|
|
leaseNamespace, serviceLease := lease.ServiceName(service)
|
|
svcLease := leaseMgr.Add(ctx, lease.NewID(config.LeaderElectionType, leaseNamespace, serviceLease))
|
|
|
|
svcCtx := servicecontext.New(svcLease.Ctx)
|
|
|
|
// The started loops only return once the service context is cancelled, so it has
|
|
// to be cancelled before waiting on them.
|
|
wg := &sync.WaitGroup{}
|
|
defer wg.Wait()
|
|
defer svcCtx.Cancel()
|
|
|
|
p := &Processor{
|
|
config: config,
|
|
provider: providers.NewEndpointslices(),
|
|
worker: &fakeWorker{endpoints: []string{"10.0.0.1"}},
|
|
leaseMgr: leaseMgr,
|
|
}
|
|
|
|
// starts counts the restart loops. The real StartServicesLeaderElection blocks
|
|
// until the service context is cancelled, so each loop parks in a single call.
|
|
var starts atomic.Int64
|
|
serviceFunc := func(svcCtx *servicecontext.Context, _ *v1.Service, _ *sync.WaitGroup, _ bool) error {
|
|
starts.Add(1)
|
|
<-svcCtx.Ctx.Done()
|
|
return nil
|
|
}
|
|
|
|
// Three endpoint events, as a flapping backend pod would produce.
|
|
for range 3 {
|
|
restart, err := p.Reconcile(svcCtx, watch.Event{Type: watch.Modified, Object: &discoveryv1.EndpointSlice{}},
|
|
new(string), service, "node-1", serviceFunc, wg, nil, nil)
|
|
if err != nil {
|
|
t.Fatalf("Reconcile returned error: %v", err)
|
|
}
|
|
if restart {
|
|
t.Fatal("Reconcile unexpectedly requested restart")
|
|
}
|
|
}
|
|
|
|
// Give every loop that is going to start a chance to reach serviceFunc.
|
|
for deadline := time.Now().Add(2 * time.Second); time.Now().Before(deadline); {
|
|
if starts.Load() > 1 {
|
|
break
|
|
}
|
|
time.Sleep(10 * time.Millisecond)
|
|
}
|
|
|
|
if got := starts.Load(); got != 1 {
|
|
t.Errorf("leader election started %d times, want 1", got)
|
|
}
|
|
|
|
// The gauge the e2e fault tests assert on has to agree with the call count.
|
|
if got := testutil.ToFloat64(metrics.ServiceElectionLoops.WithLabelValues(service.Namespace, service.Name)); got != 1 {
|
|
t.Errorf("kube_vip_service_election_loops is %v, want 1", got)
|
|
}
|
|
}
|