
This is to ensure that all existing tests don't break when defaulting the pod security policy to restricted in the e2e test framework.
78 lines
3.1 KiB
Go
78 lines
3.1 KiB
Go
/*
|
|
Copyright 2019 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 kubeadm
|
|
|
|
import (
|
|
"context"
|
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/labels"
|
|
clientset "k8s.io/client-go/kubernetes"
|
|
"k8s.io/kubernetes/test/e2e/framework"
|
|
admissionapi "k8s.io/pod-security-admission/api"
|
|
|
|
"github.com/onsi/ginkgo"
|
|
"github.com/onsi/gomega"
|
|
)
|
|
|
|
const (
|
|
controlPlaneLabel = "node-role.kubernetes.io/control-plane"
|
|
// TODO: remove the legacy label in 1.25:
|
|
// https://github.com/kubernetes/kubeadm/issues/2200
|
|
controlPlaneLabelLegacy = "node-role.kubernetes.io/master"
|
|
)
|
|
|
|
// Define container for all the test specification aimed at verifying
|
|
// that kubeadm configures the control-plane node as expected
|
|
var _ = Describe("control-plane node", func() {
|
|
|
|
// Get an instance of the k8s test framework
|
|
f := framework.NewDefaultFramework("control-plane node")
|
|
f.NamespacePodSecurityEnforceLevel = admissionapi.LevelPrivileged
|
|
|
|
// Tests in this container are not expected to create new objects in the cluster
|
|
// so we are disabling the creation of a namespace in order to get a faster execution
|
|
f.SkipNamespaceCreation = true
|
|
|
|
// Important! please note that this test can't be run on single-node clusters
|
|
// in case you can skip this test with SKIP=multi-node
|
|
ginkgo.It("should be labelled and tainted [multi-node]", func() {
|
|
// get all control-plane nodes (and this implicitly checks that node are properly labeled)
|
|
controlPlanes := getControlPlaneNodes(f.ClientSet)
|
|
|
|
// checks if there is at least one control-plane node
|
|
gomega.Expect(controlPlanes.Items).NotTo(gomega.BeEmpty(), "at least one node with label %s should exist. if you are running test on a single-node cluster, you can skip this test with SKIP=multi-node", controlPlaneLabel)
|
|
|
|
// checks that the control-plane nodes have the expected taints
|
|
// TODO: remove the legacy taint check in 1.25:
|
|
// https://github.com/kubernetes/kubeadm/issues/2200
|
|
for _, cp := range controlPlanes.Items {
|
|
framework.ExpectNodeHasTaint(f.ClientSet, cp.GetName(), &corev1.Taint{Key: controlPlaneLabel, Effect: corev1.TaintEffectNoSchedule})
|
|
framework.ExpectNodeHasTaint(f.ClientSet, cp.GetName(), &corev1.Taint{Key: controlPlaneLabelLegacy, Effect: corev1.TaintEffectNoSchedule})
|
|
}
|
|
})
|
|
})
|
|
|
|
func getControlPlaneNodes(c clientset.Interface) *corev1.NodeList {
|
|
selector := labels.Set{controlPlaneLabel: ""}.AsSelector()
|
|
cpNodes, err := c.CoreV1().Nodes().
|
|
List(context.TODO(), metav1.ListOptions{LabelSelector: selector.String()})
|
|
framework.ExpectNoError(err, "error reading control-plane nodes")
|
|
return cpNodes
|
|
}
|