-
Notifications
You must be signed in to change notification settings - Fork 442
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add e2e for metrics server api registration check
Signed-off-by: Ishan Khare <[email protected]>
- Loading branch information
1 parent
3fac312
commit 7b39ff4
Showing
4 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
package e2emetricsproxy | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
|
||
"github.com/loft-sh/log" | ||
"github.com/loft-sh/vcluster/test/framework" | ||
"github.com/onsi/ginkgo/v2" | ||
"github.com/onsi/gomega" | ||
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" | ||
apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1" | ||
"k8s.io/apimachinery/pkg/runtime" | ||
clientgoscheme "k8s.io/client-go/kubernetes/scheme" | ||
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp" | ||
apiregistrationv1 "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1" | ||
|
||
// Enable cloud provider auth | ||
_ "k8s.io/client-go/plugin/pkg/client/auth" | ||
// Register tests | ||
) | ||
|
||
var ( | ||
scheme = runtime.NewScheme() | ||
) | ||
|
||
func init() { | ||
_ = clientgoscheme.AddToScheme(scheme) | ||
// API extensions are not in the above scheme set, | ||
// and must thus be added separately. | ||
_ = apiextensionsv1beta1.AddToScheme(scheme) | ||
_ = apiextensionsv1.AddToScheme(scheme) | ||
_ = apiregistrationv1.AddToScheme(scheme) | ||
} | ||
|
||
// TestRunE2ETargetNamespaceTests checks configuration parameters (specified through flags) and then runs | ||
// E2E tests using the Ginkgo runner. | ||
// If a "report directory" is specified, one or more JUnit test reports will be | ||
// generated in this directory, and cluster logs will also be saved. | ||
// This function is called on each Ginkgo node in parallel mode. | ||
func TestRunE2ETargetNamespaceTests(t *testing.T) { | ||
gomega.RegisterFailHandler(ginkgo.Fail) | ||
err := framework.CreateFramework(context.Background(), scheme) | ||
if err != nil { | ||
log.GetInstance().Fatalf("Error setting up framework: %v", err) | ||
} | ||
|
||
var _ = ginkgo.AfterSuite(func() { | ||
err = framework.DefaultFramework.Cleanup() | ||
if err != nil { | ||
log.GetInstance().Warnf("Error executing testsuite cleanup: %v", err) | ||
} | ||
}) | ||
|
||
ginkgo.RunSpecs(t, "Vcluster e2eProxyMetricsServer suite") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package e2emetricsproxy | ||
|
||
import ( | ||
"context" | ||
"time" | ||
|
||
"github.com/loft-sh/vcluster/pkg/metricsapiservice" | ||
"github.com/loft-sh/vcluster/test/framework" | ||
"github.com/onsi/ginkgo/v2" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/util/wait" | ||
apiregistrationv1 "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1" | ||
apiregistrationv1clientset "k8s.io/kube-aggregator/pkg/client/clientset_generated/clientset/typed/apiregistration/v1" | ||
) | ||
|
||
var _ = ginkgo.Describe("Target Namespace", func() { | ||
f := framework.DefaultFramework | ||
|
||
ginkgo.It("Make sure the metrics api service is registered and available", func() { | ||
err := wait.PollUntilContextTimeout(f.Context, time.Second, time.Minute*1, false, func(ctx context.Context) (done bool, err error) { | ||
apiRegistrationClient := apiregistrationv1clientset.NewForConfigOrDie(f.VclusterConfig) | ||
apiService, err := apiRegistrationClient.APIServices().Get(f.Context, metricsapiservice.MetricsAPIServiceName, metav1.GetOptions{}) | ||
if err != nil { | ||
return false, nil | ||
} | ||
|
||
if apiService.Status.Conditions[0].Type != apiregistrationv1.Available { | ||
return false, nil | ||
} | ||
|
||
return true, nil | ||
}) | ||
framework.ExpectNoError(err) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
proxy: | ||
metricsServer: | ||
nodes: | ||
enabled: true | ||
pods: | ||
enabled: true |