123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /*
- Copyright 2018 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 node
- import (
- "time"
- batch "k8s.io/api/batch/v1"
- v1 "k8s.io/api/core/v1"
- "k8s.io/apimachinery/pkg/util/wait"
- "k8s.io/kubernetes/pkg/util/slice"
- "k8s.io/kubernetes/test/e2e/framework"
- jobutil "k8s.io/kubernetes/test/e2e/framework/job"
- e2elog "k8s.io/kubernetes/test/e2e/framework/log"
- "github.com/onsi/ginkgo"
- "github.com/onsi/gomega"
- )
- const dummyFinalizer = "k8s.io/dummy-finalizer"
- var _ = framework.KubeDescribe("[Feature:TTLAfterFinished][NodeAlphaFeature:TTLAfterFinished]", func() {
- f := framework.NewDefaultFramework("ttlafterfinished")
- ginkgo.It("job should be deleted once it finishes after TTL seconds", func() {
- testFinishedJob(f)
- })
- })
- func cleanupJob(f *framework.Framework, job *batch.Job) {
- ns := f.Namespace.Name
- c := f.ClientSet
- e2elog.Logf("Remove the Job's dummy finalizer; the Job should be deleted cascadingly")
- removeFinalizerFunc := func(j *batch.Job) {
- j.ObjectMeta.Finalizers = slice.RemoveString(j.ObjectMeta.Finalizers, dummyFinalizer, nil)
- }
- _, err := jobutil.UpdateJobWithRetries(c, ns, job.Name, removeFinalizerFunc)
- framework.ExpectNoError(err)
- jobutil.WaitForJobGone(c, ns, job.Name, wait.ForeverTestTimeout)
- err = jobutil.WaitForAllJobPodsGone(c, ns, job.Name)
- framework.ExpectNoError(err)
- }
- func testFinishedJob(f *framework.Framework) {
- ns := f.Namespace.Name
- c := f.ClientSet
- parallelism := int32(1)
- completions := int32(1)
- backoffLimit := int32(2)
- ttl := int32(10)
- job := jobutil.NewTestJob("randomlySucceedOrFail", "rand-non-local", v1.RestartPolicyNever, parallelism, completions, nil, backoffLimit)
- job.Spec.TTLSecondsAfterFinished = &ttl
- job.ObjectMeta.Finalizers = []string{dummyFinalizer}
- defer cleanupJob(f, job)
- e2elog.Logf("Create a Job %s/%s with TTL", ns, job.Name)
- job, err := jobutil.CreateJob(c, ns, job)
- framework.ExpectNoError(err)
- e2elog.Logf("Wait for the Job to finish")
- err = jobutil.WaitForJobFinish(c, ns, job.Name)
- framework.ExpectNoError(err)
- e2elog.Logf("Wait for TTL after finished controller to delete the Job")
- err = jobutil.WaitForJobDeleting(c, ns, job.Name)
- framework.ExpectNoError(err)
- e2elog.Logf("Check Job's deletionTimestamp and compare with the time when the Job finished")
- job, err = jobutil.GetJob(c, ns, job.Name)
- framework.ExpectNoError(err)
- finishTime := jobutil.FinishTime(job)
- finishTimeUTC := finishTime.UTC()
- gomega.Expect(finishTime.IsZero()).NotTo(gomega.BeTrue())
- deleteAtUTC := job.ObjectMeta.DeletionTimestamp.UTC()
- gomega.Expect(deleteAtUTC).NotTo(gomega.BeNil())
- expireAtUTC := finishTimeUTC.Add(time.Duration(ttl) * time.Second)
- gomega.Expect(deleteAtUTC.Before(expireAtUTC)).To(gomega.BeFalse())
- }
|