From 9105dc020b20602b4ebad3e8a7c241c2fd50b16e Mon Sep 17 00:00:00 2001 From: Thomas Kosiewski Date: Wed, 14 Jun 2023 18:27:39 +0200 Subject: [PATCH] Added missing GVKs for store tests Signed-off-by: Thomas Kosiewski --- source/store_test.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/source/store_test.go b/source/store_test.go index 773475b69..adb70633d 100644 --- a/source/store_test.go +++ b/source/store_test.go @@ -145,6 +145,21 @@ func (suite *ByNamesTestSuite) TestAllInitialized() { Version: "v1alpha1", Resource: "ingressrouteudps", }: "IngressRouteUDPList", + { + Group: "traefik.io", + Version: "v1alpha1", + Resource: "ingressroutes", + }: "IngressRouteList", + { + Group: "traefik.io", + Version: "v1alpha1", + Resource: "ingressroutetcps", + }: "IngressRouteTCPList", + { + Group: "traefik.io", + Version: "v1alpha1", + Resource: "ingressrouteudps", + }: "IngressRouteUDPList", }), nil) sources, err := ByNames(context.TODO(), mockClientGenerator, []string{"service", "ingress", "istio-gateway", "contour-httpproxy", "kong-tcpingress", "f5-virtualserver", "traefik-proxy", "fake"}, minimalConfig)