/* Copyright 2022 The Karmada 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 e2e import ( "fmt" "net/http" "os" "github.com/onsi/ginkgo/v2" "github.com/onsi/gomega" corev1 "k8s.io/api/core/v1" rbacv1 "k8s.io/api/rbac/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/util/rand" "k8s.io/cli-runtime/pkg/genericclioptions" "k8s.io/client-go/kubernetes" "k8s.io/client-go/tools/clientcmd" "k8s.io/klog/v2" "github.com/karmada-io/karmada/pkg/karmadactl/join" "github.com/karmada-io/karmada/pkg/karmadactl/options" "github.com/karmada-io/karmada/pkg/karmadactl/unjoin" cmdutil "github.com/karmada-io/karmada/pkg/karmadactl/util" "github.com/karmada-io/karmada/test/e2e/framework" "github.com/karmada-io/karmada/test/helper" ) const ( clusterProxy = "/apis/cluster.karmada.io/v1alpha1/clusters/%s/proxy/" ) var _ = framework.SerialDescribe("Aggregated Kubernetes API Endpoint testing", func() { var member1, member2 string var saName, saNamespace string var tomServiceAccount *corev1.ServiceAccount var tomSecret *corev1.Secret var tomClusterRole *rbacv1.ClusterRole var tomClusterRoleBinding *rbacv1.ClusterRoleBinding var tomClusterRoleOnMember *rbacv1.ClusterRole var tomClusterRoleBindingOnMember *rbacv1.ClusterRoleBinding var f cmdutil.Factory var ( clusterName string homeDir string kubeConfigPath string clusterContext string controlPlane string secretStoreNamespace string ) ginkgo.BeforeEach(func() { clusterName = "member-e2e-" + rand.String(RandomStrLength) homeDir = os.Getenv("HOME") kubeConfigPath = fmt.Sprintf("%s/.kube/%s.config", homeDir, clusterName) clusterContext = fmt.Sprintf("kind-%s", clusterName) controlPlane = fmt.Sprintf("%s-control-plane", clusterName) secretStoreNamespace = "test-" + rand.String(RandomStrLength) defaultConfigFlags := genericclioptions.NewConfigFlags(true).WithDeprecatedPasswordFlag().WithDiscoveryBurst(300).WithDiscoveryQPS(50.0) defaultConfigFlags.Context = &karmadaContext f = cmdutil.NewFactory(defaultConfigFlags) }) ginkgo.BeforeEach(func() { ginkgo.By(fmt.Sprintf("Create cluster: %s", clusterName), func() { err := createCluster(clusterName, kubeConfigPath, controlPlane, clusterContext) gomega.Expect(err).ShouldNot(gomega.HaveOccurred()) }) ginkgo.DeferCleanup(func() { ginkgo.By(fmt.Sprintf("Deleting clusters: %s", clusterName), func() { err := deleteCluster(clusterName, kubeConfigPath) gomega.Expect(err).ShouldNot(gomega.HaveOccurred()) _ = os.Remove(kubeConfigPath) }) }) }) ginkgo.BeforeEach(func() { ginkgo.By(fmt.Sprintf("Joining cluster: %s", clusterName), func() { opts := join.CommandJoinOption{ DryRun: false, ClusterNamespace: secretStoreNamespace, ClusterName: clusterName, ClusterContext: clusterContext, ClusterKubeConfig: kubeConfigPath, } err := opts.Run(f) gomega.Expect(err).ShouldNot(gomega.HaveOccurred()) }) }) ginkgo.AfterEach(func() { ginkgo.By(fmt.Sprintf("Unjoining cluster: %s", clusterName), func() { opts := unjoin.CommandUnjoinOption{ DryRun: false, ClusterNamespace: secretStoreNamespace, ClusterName: clusterName, ClusterContext: clusterContext, ClusterKubeConfig: kubeConfigPath, Wait: 5 * options.DefaultKarmadactlCommandDuration, } err := opts.Run(f) gomega.Expect(err).ShouldNot(gomega.HaveOccurred()) }) }) ginkgo.BeforeEach(func() { member1, member2 = "member1", "member2" saName = fmt.Sprintf("tom-%s", rand.String(RandomStrLength)) saNamespace = testNamespace tomServiceAccount = helper.NewServiceaccount(saNamespace, saName) tomSecret = &corev1.Secret{ ObjectMeta: metav1.ObjectMeta{ Namespace: saNamespace, Name: saName, Annotations: map[string]string{ corev1.ServiceAccountNameKey: saName, }, }, Type: corev1.SecretTypeServiceAccountToken, } tomClusterRole = helper.NewClusterRole(tomServiceAccount.Name, []rbacv1.PolicyRule{ { APIGroups: []string{"cluster.karmada.io"}, Verbs: []string{"*"}, Resources: []string{"clusters/proxy"}, ResourceNames: []string{member1, clusterName}, }, }) tomClusterRoleBinding = helper.NewClusterRoleBinding(tomServiceAccount.Name, tomClusterRole.Name, []rbacv1.Subject{ {Kind: "ServiceAccount", Name: tomServiceAccount.Name, Namespace: tomServiceAccount.Namespace}, {Kind: "Group", Name: "system:serviceaccounts"}, {Kind: "Group", Name: "system:serviceaccounts:" + tomServiceAccount.Namespace}, }) tomClusterRoleOnMember = helper.NewClusterRole(tomServiceAccount.Name, []rbacv1.PolicyRule{ { APIGroups: []string{"*"}, Verbs: []string{"*"}, Resources: []string{"*"}, }, }) tomClusterRoleBindingOnMember = helper.NewClusterRoleBinding(tomServiceAccount.Name, tomClusterRoleOnMember.Name, []rbacv1.Subject{ {Kind: "ServiceAccount", Name: tomServiceAccount.Name, Namespace: tomServiceAccount.Namespace}, }) }) ginkgo.Context("Aggregated Kubernetes API Endpoint testing", func() { var tomToken string ginkgo.BeforeEach(func() { framework.CreateServiceAccount(kubeClient, tomServiceAccount) framework.CreateSecret(kubeClient, tomSecret) framework.CreateClusterRole(kubeClient, tomClusterRole) framework.CreateClusterRoleBinding(kubeClient, tomClusterRoleBinding) ginkgo.DeferCleanup(func() { framework.RemoveServiceAccount(kubeClient, tomServiceAccount.Namespace, tomServiceAccount.Name) framework.RemoveClusterRole(kubeClient, tomClusterRole.Name) framework.RemoveClusterRoleBinding(kubeClient, tomClusterRoleBinding.Name) }) var err error tomToken, err = helper.GetTokenFromServiceAccount(kubeClient, tomServiceAccount.Namespace, tomServiceAccount.Name) gomega.Expect(err).ShouldNot(gomega.HaveOccurred()) }) ginkgo.When(fmt.Sprintf("Serviceaccount(tom) access the %s cluster", member1), func() { var clusterClient kubernetes.Interface ginkgo.BeforeEach(func() { clusterClient = framework.GetClusterClient(member1) gomega.Expect(clusterClient).ShouldNot(gomega.BeNil()) }) ginkgo.BeforeEach(func() { klog.Infof("Create ServiceAccount(%s) in the %s cluster", klog.KObj(tomServiceAccount).String(), member1) framework.CreateServiceAccount(clusterClient, tomServiceAccount) ginkgo.DeferCleanup(func() { klog.Infof("Delete ServiceAccount(%s) in the %s cluster", klog.KObj(tomServiceAccount).String(), member1) framework.RemoveServiceAccount(clusterClient, tomServiceAccount.Namespace, tomServiceAccount.Name) }) }) ginkgo.AfterEach(func() { clusterClient := framework.GetClusterClient(member1) gomega.Expect(clusterClient).ShouldNot(gomega.BeNil()) framework.RemoveClusterRole(clusterClient, tomClusterRoleOnMember.Name) framework.RemoveClusterRoleBinding(clusterClient, tomClusterRoleBindingOnMember.Name) }) ginkgo.It("tom access the member1 cluster api with and without right", func() { ginkgo.By(fmt.Sprintf("access the %s cluster `/api` path with right", member1), func() { gomega.Eventually(func(g gomega.Gomega) (int, error) { code, err := helper.DoRequest(fmt.Sprintf(karmadaHost+clusterProxy+"api", member1), tomToken) g.Expect(err).ShouldNot(gomega.HaveOccurred()) return code, nil }, pollTimeout, pollInterval).Should(gomega.Equal(http.StatusOK)) }) ginkgo.By(fmt.Sprintf("access the %s cluster `/api/v1/nodes` path without right", member1), func() { code, err := helper.DoRequest(fmt.Sprintf(karmadaHost+clusterProxy+"api/v1/nodes", member1), tomToken) gomega.Expect(err).ShouldNot(gomega.HaveOccurred()) gomega.Expect(code).Should(gomega.Equal(http.StatusForbidden)) }) ginkgo.By(fmt.Sprintf("create rbac in the %s cluster", member1), func() { framework.CreateClusterRole(clusterClient, tomClusterRoleOnMember) framework.CreateClusterRoleBinding(clusterClient, tomClusterRoleBindingOnMember) }) ginkgo.By(fmt.Sprintf("access the %s cluster `/api/v1/nodes` path with right", member1), func() { gomega.Eventually(func(g gomega.Gomega) (int, error) { code, err := helper.DoRequest(fmt.Sprintf(karmadaHost+clusterProxy+"api/v1/nodes", member1), tomToken) g.Expect(err).ShouldNot(gomega.HaveOccurred()) return code, nil }, pollTimeout, pollInterval).Should(gomega.Equal(http.StatusOK)) }) }) }) ginkgo.When(fmt.Sprintf("Serviceaccount(tom) access the %s cluster", member2), func() { ginkgo.It("tom access the member2 cluster without right", func() { ginkgo.By(fmt.Sprintf("access the %s cluster `/api` path without right", member2), func() { code, err := helper.DoRequest(fmt.Sprintf(karmadaHost+clusterProxy, member2), tomToken) gomega.Expect(err).ShouldNot(gomega.HaveOccurred()) gomega.Expect(code).Should(gomega.Equal(http.StatusForbidden)) }) }) }) ginkgo.When(fmt.Sprintf("Serviceaccount(tom) access the %s cluster", clusterName), func() { var clusterClient kubernetes.Interface ginkgo.BeforeEach(func() { clusterConfig, err := clientcmd.BuildConfigFromFlags("", kubeConfigPath) gomega.Expect(err).ShouldNot(gomega.HaveOccurred()) clusterClient = kubernetes.NewForConfigOrDie(clusterConfig) }) ginkgo.BeforeEach(func() { klog.Infof("Waiting for namespace present on cluster(%s)", clusterName) framework.WaitNamespacePresentOnClusterByClient(clusterClient, tomServiceAccount.Namespace) klog.Infof("Create ServiceAccount(%s) in the cluster(%s)", klog.KObj(tomServiceAccount).String(), clusterName) framework.CreateServiceAccount(clusterClient, tomServiceAccount) ginkgo.DeferCleanup(func() { klog.Infof("Delete ServiceAccount(%s) in the cluster(%s)", klog.KObj(tomServiceAccount).String(), clusterName) framework.RemoveServiceAccount(clusterClient, tomServiceAccount.Namespace, tomServiceAccount.Name) }) }) ginkgo.AfterEach(func() { framework.RemoveClusterRole(clusterClient, tomClusterRoleOnMember.Name) framework.RemoveClusterRoleBinding(clusterClient, tomClusterRoleBindingOnMember.Name) }) ginkgo.It("tom access the specified cluster with/without right", func() { ginkgo.By(fmt.Sprintf("access the %s cluster `/api` path with right", clusterName), func() { gomega.Eventually(func(g gomega.Gomega) (int, error) { code, err := helper.DoRequest(fmt.Sprintf(karmadaHost+clusterProxy+"api", clusterName), tomToken) g.Expect(err).ShouldNot(gomega.HaveOccurred()) return code, nil }, pollTimeout, pollInterval).Should(gomega.Equal(http.StatusOK)) }) ginkgo.By(fmt.Sprintf("access the %s cluster `/api/v1/nodes` path without right", clusterName), func() { code, err := helper.DoRequest(fmt.Sprintf(karmadaHost+clusterProxy+"api/v1/nodes", clusterName), tomToken) gomega.Expect(err).ShouldNot(gomega.HaveOccurred()) gomega.Expect(code).Should(gomega.Equal(http.StatusForbidden)) }) ginkgo.By(fmt.Sprintf("create rbac in the %s cluster", clusterName), func() { framework.CreateClusterRole(clusterClient, tomClusterRoleOnMember) framework.CreateClusterRoleBinding(clusterClient, tomClusterRoleBindingOnMember) }) ginkgo.By(fmt.Sprintf("access the %s cluster `/api/v1/nodes` path with right", clusterName), func() { gomega.Eventually(func(g gomega.Gomega) (int, error) { code, err := helper.DoRequest(fmt.Sprintf(karmadaHost+clusterProxy+"api/v1/nodes", clusterName), tomToken) g.Expect(err).ShouldNot(gomega.HaveOccurred()) return code, nil }, pollTimeout, pollInterval).Should(gomega.Equal(http.StatusOK)) }) }) }) }) })