
Every ginkgo callback should return immediately when a timeout occurs or the test run manually gets aborted with CTRL-C. To do that, they must take a ctx parameter and pass it through to all code which might block. This is a first automated step towards that: the additional parameter got added with sed -i 's/\(framework.ConformanceIt\|ginkgo.It\)\(.*\)func() {$/\1\2func(ctx context.Context) {/' \ $(git grep -l -e framework.ConformanceIt -e ginkgo.It ) $GOPATH/bin/goimports -w $(git status | grep modified: | sed -e 's/.* //') log_test.go was left unchanged.
468 lines
20 KiB
Go
468 lines
20 KiB
Go
/*
|
|
Copyright 2014 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 apimachinery
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
v1 "k8s.io/api/core/v1"
|
|
apierrors "k8s.io/apimachinery/pkg/api/errors"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/util/intstr"
|
|
utilrand "k8s.io/apimachinery/pkg/util/rand"
|
|
"k8s.io/apimachinery/pkg/util/uuid"
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
clientscheme "k8s.io/client-go/kubernetes/scheme"
|
|
"k8s.io/client-go/util/retry"
|
|
"k8s.io/kubernetes/test/e2e/framework"
|
|
e2epod "k8s.io/kubernetes/test/e2e/framework/pod"
|
|
imageutils "k8s.io/kubernetes/test/utils/image"
|
|
admissionapi "k8s.io/pod-security-admission/api"
|
|
|
|
"github.com/onsi/ginkgo/v2"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
)
|
|
|
|
func extinguish(f *framework.Framework, totalNS int, maxAllowedAfterDel int, maxSeconds int) {
|
|
ginkgo.By("Creating testing namespaces")
|
|
wg := &sync.WaitGroup{}
|
|
wg.Add(totalNS)
|
|
for n := 0; n < totalNS; n++ {
|
|
go func(n int) {
|
|
defer wg.Done()
|
|
defer ginkgo.GinkgoRecover()
|
|
ns := fmt.Sprintf("nslifetest-%v", n)
|
|
_, err := f.CreateNamespace(ns, nil)
|
|
framework.ExpectNoError(err, "failed to create namespace: %s", ns)
|
|
}(n)
|
|
}
|
|
wg.Wait()
|
|
|
|
//Wait 10 seconds, then SEND delete requests for all the namespaces.
|
|
ginkgo.By("Waiting 10 seconds")
|
|
time.Sleep(10 * time.Second)
|
|
deleteFilter := []string{"nslifetest"}
|
|
deleted, err := framework.DeleteNamespaces(f.ClientSet, deleteFilter, nil /* skipFilter */)
|
|
framework.ExpectNoError(err, "failed to delete namespace(s) containing: %s", deleteFilter)
|
|
framework.ExpectEqual(len(deleted), totalNS)
|
|
|
|
ginkgo.By("Waiting for namespaces to vanish")
|
|
//Now POLL until all namespaces have been eradicated.
|
|
framework.ExpectNoError(wait.Poll(2*time.Second, time.Duration(maxSeconds)*time.Second,
|
|
func() (bool, error) {
|
|
var cnt = 0
|
|
nsList, err := f.ClientSet.CoreV1().Namespaces().List(context.TODO(), metav1.ListOptions{})
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
for _, item := range nsList.Items {
|
|
if strings.Contains(item.Name, "nslifetest") {
|
|
cnt++
|
|
}
|
|
}
|
|
if cnt > maxAllowedAfterDel {
|
|
framework.Logf("Remaining namespaces : %v", cnt)
|
|
return false, nil
|
|
}
|
|
return true, nil
|
|
}))
|
|
}
|
|
|
|
func ensurePodsAreRemovedWhenNamespaceIsDeleted(f *framework.Framework) {
|
|
ginkgo.By("Creating a test namespace")
|
|
namespaceName := "nsdeletetest"
|
|
namespace, err := f.CreateNamespace(namespaceName, nil)
|
|
framework.ExpectNoError(err, "failed to create namespace: %s", namespaceName)
|
|
|
|
ginkgo.By("Waiting for a default service account to be provisioned in namespace")
|
|
err = framework.WaitForDefaultServiceAccountInNamespace(f.ClientSet, namespace.Name)
|
|
framework.ExpectNoError(err, "failure while waiting for a default service account to be provisioned in namespace: %s", namespace.Name)
|
|
|
|
ginkgo.By("Creating a pod in the namespace")
|
|
podName := "test-pod"
|
|
pod := &v1.Pod{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: podName,
|
|
},
|
|
Spec: v1.PodSpec{
|
|
Containers: []v1.Container{
|
|
{
|
|
Name: "nginx",
|
|
Image: imageutils.GetPauseImageName(),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
pod, err = f.ClientSet.CoreV1().Pods(namespace.Name).Create(context.TODO(), pod, metav1.CreateOptions{})
|
|
framework.ExpectNoError(err, "failed to create pod %s in namespace: %s", podName, namespace.Name)
|
|
|
|
ginkgo.By("Waiting for the pod to have running status")
|
|
framework.ExpectNoError(e2epod.WaitForPodRunningInNamespace(f.ClientSet, pod))
|
|
|
|
ginkgo.By("Deleting the namespace")
|
|
err = f.ClientSet.CoreV1().Namespaces().Delete(context.TODO(), namespace.Name, metav1.DeleteOptions{})
|
|
framework.ExpectNoError(err, "failed to delete namespace: %s", namespace.Name)
|
|
|
|
ginkgo.By("Waiting for the namespace to be removed.")
|
|
maxWaitSeconds := int64(60) + *pod.Spec.TerminationGracePeriodSeconds
|
|
framework.ExpectNoError(wait.Poll(1*time.Second, time.Duration(maxWaitSeconds)*time.Second,
|
|
func() (bool, error) {
|
|
_, err = f.ClientSet.CoreV1().Namespaces().Get(context.TODO(), namespace.Name, metav1.GetOptions{})
|
|
if err != nil && apierrors.IsNotFound(err) {
|
|
return true, nil
|
|
}
|
|
return false, nil
|
|
}))
|
|
|
|
ginkgo.By("Recreating the namespace")
|
|
namespace, err = f.CreateNamespace(namespaceName, nil)
|
|
framework.ExpectNoError(err, "failed to create namespace: %s", namespaceName)
|
|
|
|
ginkgo.By("Verifying there are no pods in the namespace")
|
|
_, err = f.ClientSet.CoreV1().Pods(namespace.Name).Get(context.TODO(), pod.Name, metav1.GetOptions{})
|
|
framework.ExpectError(err, "failed to get pod %s in namespace: %s", pod.Name, namespace.Name)
|
|
}
|
|
|
|
func ensureServicesAreRemovedWhenNamespaceIsDeleted(f *framework.Framework) {
|
|
var err error
|
|
|
|
ginkgo.By("Creating a test namespace")
|
|
namespaceName := "nsdeletetest"
|
|
namespace, err := f.CreateNamespace(namespaceName, nil)
|
|
framework.ExpectNoError(err, "failed to create namespace: %s", namespaceName)
|
|
|
|
ginkgo.By("Waiting for a default service account to be provisioned in namespace")
|
|
err = framework.WaitForDefaultServiceAccountInNamespace(f.ClientSet, namespace.Name)
|
|
framework.ExpectNoError(err, "failure while waiting for a default service account to be provisioned in namespace: %s", namespace.Name)
|
|
|
|
ginkgo.By("Creating a service in the namespace")
|
|
serviceName := "test-service"
|
|
labels := map[string]string{
|
|
"foo": "bar",
|
|
"baz": "blah",
|
|
}
|
|
service := &v1.Service{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: serviceName,
|
|
},
|
|
Spec: v1.ServiceSpec{
|
|
Selector: labels,
|
|
Ports: []v1.ServicePort{{
|
|
Port: 80,
|
|
TargetPort: intstr.FromInt(80),
|
|
}},
|
|
},
|
|
}
|
|
service, err = f.ClientSet.CoreV1().Services(namespace.Name).Create(context.TODO(), service, metav1.CreateOptions{})
|
|
framework.ExpectNoError(err, "failed to create service %s in namespace %s", serviceName, namespace.Name)
|
|
|
|
ginkgo.By("Deleting the namespace")
|
|
err = f.ClientSet.CoreV1().Namespaces().Delete(context.TODO(), namespace.Name, metav1.DeleteOptions{})
|
|
framework.ExpectNoError(err, "failed to delete namespace: %s", namespace.Name)
|
|
|
|
ginkgo.By("Waiting for the namespace to be removed.")
|
|
maxWaitSeconds := int64(60)
|
|
framework.ExpectNoError(wait.Poll(1*time.Second, time.Duration(maxWaitSeconds)*time.Second,
|
|
func() (bool, error) {
|
|
_, err = f.ClientSet.CoreV1().Namespaces().Get(context.TODO(), namespace.Name, metav1.GetOptions{})
|
|
if err != nil && apierrors.IsNotFound(err) {
|
|
return true, nil
|
|
}
|
|
return false, nil
|
|
}))
|
|
|
|
ginkgo.By("Recreating the namespace")
|
|
namespace, err = f.CreateNamespace(namespaceName, nil)
|
|
framework.ExpectNoError(err, "failed to create namespace: %s", namespaceName)
|
|
|
|
ginkgo.By("Verifying there is no service in the namespace")
|
|
_, err = f.ClientSet.CoreV1().Services(namespace.Name).Get(context.TODO(), service.Name, metav1.GetOptions{})
|
|
framework.ExpectError(err, "failed to get service %s in namespace: %s", service.Name, namespace.Name)
|
|
}
|
|
|
|
// This test must run [Serial] due to the impact of running other parallel
|
|
// tests can have on its performance. Each test that follows the common
|
|
// test framework follows this pattern:
|
|
// 1. Create a Namespace
|
|
// 2. Do work that generates content in that namespace
|
|
// 3. Delete a Namespace
|
|
//
|
|
// Creation of a Namespace is non-trivial since it requires waiting for a
|
|
// ServiceAccount to be generated.
|
|
// Deletion of a Namespace is non-trivial and performance intensive since
|
|
// its an orchestrated process. The controller that handles deletion must
|
|
// query the namespace for all existing content, and then delete each piece
|
|
// of content in turn. As the API surface grows to add more KIND objects
|
|
// that could exist in a Namespace, the number of calls that the namespace
|
|
// controller must orchestrate grows since it must LIST, DELETE (1x1) each
|
|
// KIND.
|
|
// There is work underway to improve this, but it's
|
|
// most likely not going to get significantly better until etcd v3.
|
|
// Going back to this test, this test generates 100 Namespace objects, and then
|
|
// rapidly deletes all of them. This causes the NamespaceController to observe
|
|
// and attempt to process a large number of deletes concurrently. In effect,
|
|
// it's like running 100 traditional e2e tests in parallel. If the namespace
|
|
// controller orchestrating deletes is slowed down deleting another test's
|
|
// content then this test may fail. Since the goal of this test is to soak
|
|
// Namespace creation, and soak Namespace deletion, its not appropriate to
|
|
// further soak the cluster with other parallel Namespace deletion activities
|
|
// that each have a variable amount of content in the associated Namespace.
|
|
// When run in [Serial] this test appears to delete Namespace objects at a
|
|
// rate of approximately 1 per second.
|
|
var _ = SIGDescribe("Namespaces [Serial]", func() {
|
|
|
|
f := framework.NewDefaultFramework("namespaces")
|
|
f.NamespacePodSecurityEnforceLevel = admissionapi.LevelBaseline
|
|
|
|
/*
|
|
Release: v1.11
|
|
Testname: namespace-deletion-removes-pods
|
|
Description: Ensure that if a namespace is deleted then all pods are removed from that namespace.
|
|
*/
|
|
framework.ConformanceIt("should ensure that all pods are removed when a namespace is deleted",
|
|
func() { ensurePodsAreRemovedWhenNamespaceIsDeleted(f) })
|
|
|
|
/*
|
|
Release: v1.11
|
|
Testname: namespace-deletion-removes-services
|
|
Description: Ensure that if a namespace is deleted then all services are removed from that namespace.
|
|
*/
|
|
framework.ConformanceIt("should ensure that all services are removed when a namespace is deleted",
|
|
func() { ensureServicesAreRemovedWhenNamespaceIsDeleted(f) })
|
|
|
|
ginkgo.It("should delete fast enough (90 percent of 100 namespaces in 150 seconds)",
|
|
func() { extinguish(f, 100, 10, 150) })
|
|
|
|
// On hold until etcd3; see #7372
|
|
ginkgo.It("should always delete fast (ALL of 100 namespaces in 150 seconds) [Feature:ComprehensiveNamespaceDraining]",
|
|
func() { extinguish(f, 100, 0, 150) })
|
|
|
|
/*
|
|
Release: v1.18
|
|
Testname: Namespace patching
|
|
Description: A Namespace is created.
|
|
The Namespace is patched.
|
|
The Namespace and MUST now include the new Label.
|
|
*/
|
|
framework.ConformanceIt("should patch a Namespace", func(ctx context.Context) {
|
|
ginkgo.By("creating a Namespace")
|
|
namespaceName := "nspatchtest-" + string(uuid.NewUUID())
|
|
ns, err := f.CreateNamespace(namespaceName, nil)
|
|
framework.ExpectNoError(err, "failed creating Namespace")
|
|
namespaceName = ns.ObjectMeta.Name
|
|
|
|
ginkgo.By("patching the Namespace")
|
|
nspatch, err := json.Marshal(map[string]interface{}{
|
|
"metadata": map[string]interface{}{
|
|
"labels": map[string]string{"testLabel": "testValue"},
|
|
},
|
|
})
|
|
framework.ExpectNoError(err, "failed to marshal JSON patch data")
|
|
_, err = f.ClientSet.CoreV1().Namespaces().Patch(context.TODO(), namespaceName, types.StrategicMergePatchType, nspatch, metav1.PatchOptions{})
|
|
framework.ExpectNoError(err, "failed to patch Namespace")
|
|
|
|
ginkgo.By("get the Namespace and ensuring it has the label")
|
|
namespace, err := f.ClientSet.CoreV1().Namespaces().Get(context.TODO(), namespaceName, metav1.GetOptions{})
|
|
framework.ExpectNoError(err, "failed to get Namespace")
|
|
framework.ExpectEqual(namespace.ObjectMeta.Labels["testLabel"], "testValue", "namespace not patched")
|
|
})
|
|
|
|
/*
|
|
Release: v1.25
|
|
Testname: Namespace, apply changes to a namespace status
|
|
Description: Getting the current namespace status MUST succeed. The reported status
|
|
phase MUST be active. Given the patching of the namespace status, the fields MUST
|
|
equal the new values. Given the updating of the namespace status, the fields MUST
|
|
equal the new values.
|
|
*/
|
|
framework.ConformanceIt("should apply changes to a namespace status", func(ctx context.Context) {
|
|
ns := f.Namespace.Name
|
|
dc := f.DynamicClient
|
|
nsResource := v1.SchemeGroupVersion.WithResource("namespaces")
|
|
nsClient := f.ClientSet.CoreV1().Namespaces()
|
|
|
|
ginkgo.By("Read namespace status")
|
|
|
|
unstruct, err := dc.Resource(nsResource).Get(context.TODO(), ns, metav1.GetOptions{}, "status")
|
|
framework.ExpectNoError(err, "failed to fetch NamespaceStatus %s", ns)
|
|
nsStatus, err := unstructuredToNamespace(unstruct)
|
|
framework.ExpectNoError(err, "Getting the status of the namespace %s", ns)
|
|
framework.ExpectEqual(nsStatus.Status.Phase, v1.NamespaceActive, "The phase returned was %v", nsStatus.Status.Phase)
|
|
framework.Logf("Status: %#v", nsStatus.Status)
|
|
|
|
ginkgo.By("Patch namespace status")
|
|
|
|
nsCondition := v1.NamespaceCondition{
|
|
Type: "StatusPatch",
|
|
Status: v1.ConditionTrue,
|
|
Reason: "E2E",
|
|
Message: "Patched by an e2e test",
|
|
}
|
|
nsConditionJSON, err := json.Marshal(nsCondition)
|
|
framework.ExpectNoError(err, "failed to marshal namespace condition")
|
|
|
|
patchedStatus, err := nsClient.Patch(context.TODO(), ns, types.MergePatchType,
|
|
[]byte(`{"metadata":{"annotations":{"e2e-patched-ns-status":"`+ns+`"}},"status":{"conditions":[`+string(nsConditionJSON)+`]}}`),
|
|
metav1.PatchOptions{}, "status")
|
|
framework.ExpectNoError(err, "Failed to patch status. err: %v ", err)
|
|
framework.ExpectEqual(patchedStatus.Annotations["e2e-patched-ns-status"], ns, "patched object should have the applied annotation")
|
|
framework.ExpectEqual(patchedStatus.Status.Conditions[len(patchedStatus.Status.Conditions)-1].Reason, "E2E", "The Reason returned was %v", patchedStatus.Status.Conditions[0].Reason)
|
|
framework.ExpectEqual(patchedStatus.Status.Conditions[len(patchedStatus.Status.Conditions)-1].Message, "Patched by an e2e test", "The Message returned was %v", patchedStatus.Status.Conditions[0].Message)
|
|
framework.Logf("Status.Condition: %#v", patchedStatus.Status.Conditions[len(patchedStatus.Status.Conditions)-1])
|
|
|
|
ginkgo.By("Update namespace status")
|
|
var statusUpdated *v1.Namespace
|
|
|
|
err = retry.RetryOnConflict(retry.DefaultRetry, func() error {
|
|
unstruct, err := dc.Resource(nsResource).Get(context.TODO(), ns, metav1.GetOptions{}, "status")
|
|
framework.ExpectNoError(err, "failed to fetch NamespaceStatus %s", ns)
|
|
statusToUpdate, err := unstructuredToNamespace(unstruct)
|
|
framework.ExpectNoError(err, "Getting the status of the namespace %s", ns)
|
|
|
|
statusToUpdate.Status.Conditions = append(statusToUpdate.Status.Conditions, v1.NamespaceCondition{
|
|
Type: "StatusUpdate",
|
|
Status: v1.ConditionTrue,
|
|
Reason: "E2E",
|
|
Message: "Updated by an e2e test",
|
|
})
|
|
statusUpdated, err = nsClient.UpdateStatus(context.TODO(), statusToUpdate, metav1.UpdateOptions{})
|
|
|
|
return err
|
|
})
|
|
framework.ExpectNoError(err, "failed to update namespace status %s", ns)
|
|
framework.ExpectEqual(len(statusUpdated.Status.Conditions), len(statusUpdated.Status.Conditions), fmt.Sprintf("updated object should have the applied condition, got %#v", statusUpdated.Status.Conditions))
|
|
framework.ExpectEqual(string(statusUpdated.Status.Conditions[len(statusUpdated.Status.Conditions)-1].Type), "StatusUpdate", fmt.Sprintf("updated object should have the approved condition, got %#v", statusUpdated.Status.Conditions))
|
|
framework.ExpectEqual(statusUpdated.Status.Conditions[len(statusUpdated.Status.Conditions)-1].Message, "Updated by an e2e test", "The Message returned was %v", statusUpdated.Status.Conditions[0].Message)
|
|
framework.Logf("Status.Condition: %#v", statusUpdated.Status.Conditions[len(statusUpdated.Status.Conditions)-1])
|
|
})
|
|
|
|
/*
|
|
Release: v1.26
|
|
Testname: Namespace, apply update to a namespace
|
|
Description: When updating the namespace it MUST
|
|
succeed and the field MUST equal the new value.
|
|
*/
|
|
framework.ConformanceIt("should apply an update to a Namespace", func(ctx context.Context) {
|
|
var err error
|
|
var updatedNamespace *v1.Namespace
|
|
ns := f.Namespace.Name
|
|
cs := f.ClientSet
|
|
|
|
ginkgo.By(fmt.Sprintf("Updating Namespace %q", ns))
|
|
err = retry.RetryOnConflict(retry.DefaultRetry, func() error {
|
|
updatedNamespace, err = cs.CoreV1().Namespaces().Get(context.TODO(), ns, metav1.GetOptions{})
|
|
framework.ExpectNoError(err, "Unable to get Namespace %q", ns)
|
|
|
|
updatedNamespace.Labels[ns] = "updated"
|
|
updatedNamespace, err = cs.CoreV1().Namespaces().Update(context.TODO(), updatedNamespace, metav1.UpdateOptions{})
|
|
return err
|
|
})
|
|
framework.ExpectNoError(err, "failed to update Namespace: %q", ns)
|
|
framework.ExpectEqual(updatedNamespace.ObjectMeta.Labels[ns], "updated", "Failed to update namespace %q. Current Labels: %#v", ns, updatedNamespace.Labels)
|
|
framework.Logf("Namespace %q now has labels, %#v", ns, updatedNamespace.Labels)
|
|
})
|
|
|
|
/*
|
|
Release: v1.26
|
|
Testname: Namespace, apply finalizer to a namespace
|
|
Description: Attempt to create a Namespace which MUST be succeed.
|
|
Updating the namespace with a fake finalizer MUST succeed. The
|
|
fake finalizer MUST be found. Removing the fake finalizer from
|
|
the namespace MUST succeed and MUST NOT be found.
|
|
*/
|
|
framework.ConformanceIt("should apply a finalizer to a Namespace", func(ctx context.Context) {
|
|
|
|
fakeFinalizer := v1.FinalizerName("e2e.example.com/fakeFinalizer")
|
|
var updatedNamespace *v1.Namespace
|
|
nsName := "e2e-ns-" + utilrand.String(5)
|
|
|
|
ginkgo.By(fmt.Sprintf("Creating namespace %q", nsName))
|
|
testNamespace, err := f.CreateNamespace(nsName, nil)
|
|
framework.ExpectNoError(err, "failed creating Namespace")
|
|
ns := testNamespace.ObjectMeta.Name
|
|
nsClient := f.ClientSet.CoreV1().Namespaces()
|
|
framework.Logf("Namespace %q has %#v", testNamespace.Name, testNamespace.Spec.Finalizers)
|
|
|
|
ginkgo.By(fmt.Sprintf("Adding e2e finalizer to namespace %q", ns))
|
|
err = retry.RetryOnConflict(retry.DefaultRetry, func() error {
|
|
updateNamespace, err := nsClient.Get(context.TODO(), ns, metav1.GetOptions{})
|
|
framework.ExpectNoError(err, "Unable to get Namespace %q", ns)
|
|
|
|
updateNamespace.Spec.Finalizers = append(updateNamespace.Spec.Finalizers, fakeFinalizer)
|
|
updatedNamespace, err = nsClient.Finalize(context.TODO(), updateNamespace, metav1.UpdateOptions{})
|
|
return err
|
|
})
|
|
framework.ExpectNoError(err, "failed to add finalizer to the namespace: %q", ns)
|
|
|
|
var foundFinalizer bool
|
|
for _, item := range updatedNamespace.Spec.Finalizers {
|
|
if item == fakeFinalizer {
|
|
foundFinalizer = true
|
|
break
|
|
}
|
|
}
|
|
framework.ExpectEqual(foundFinalizer, true, "Finalizer %q was not found. Namespace %q has %#v", fakeFinalizer, updatedNamespace.Spec.Finalizers)
|
|
framework.Logf("Namespace %q has %#v", updatedNamespace.Name, updatedNamespace.Spec.Finalizers)
|
|
|
|
ginkgo.By(fmt.Sprintf("Removing e2e finalizer from namespace %q", ns))
|
|
err = retry.RetryOnConflict(retry.DefaultRetry, func() error {
|
|
updatedNamespace, err = nsClient.Get(context.TODO(), ns, metav1.GetOptions{})
|
|
framework.ExpectNoError(err, "Unable to get namespace %q", ns)
|
|
|
|
var finalizerList []v1.FinalizerName
|
|
for _, item := range updatedNamespace.Spec.Finalizers {
|
|
if item != fakeFinalizer {
|
|
finalizerList = append(finalizerList, item)
|
|
}
|
|
}
|
|
updatedNamespace.Spec.Finalizers = finalizerList
|
|
updatedNamespace, err = nsClient.Finalize(context.TODO(), updatedNamespace, metav1.UpdateOptions{})
|
|
return err
|
|
})
|
|
framework.ExpectNoError(err, "failed to remove finalizer from namespace: %q", ns)
|
|
|
|
foundFinalizer = false
|
|
for _, item := range updatedNamespace.Spec.Finalizers {
|
|
if item == fakeFinalizer {
|
|
foundFinalizer = true
|
|
break
|
|
}
|
|
}
|
|
framework.ExpectEqual(foundFinalizer, false, "Finalizer %q was found. Namespace %q has %#v", fakeFinalizer, updatedNamespace.Spec.Finalizers)
|
|
framework.Logf("Namespace %q has %#v", updatedNamespace.Name, updatedNamespace.Spec.Finalizers)
|
|
})
|
|
|
|
})
|
|
|
|
func unstructuredToNamespace(obj *unstructured.Unstructured) (*v1.Namespace, error) {
|
|
json, err := runtime.Encode(unstructured.UnstructuredJSONScheme, obj)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ns := &v1.Namespace{}
|
|
err = runtime.DecodeInto(clientscheme.Codecs.LegacyCodec(v1.SchemeGroupVersion), json, ns)
|
|
|
|
return ns, err
|
|
}
|