12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /*
- 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 job
- import (
- "context"
- "time"
- "k8s.io/api/core/v1"
- apierrors "k8s.io/apimachinery/pkg/api/errors"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/util/wait"
- clientset "k8s.io/client-go/kubernetes"
- jobutil "k8s.io/kubernetes/pkg/controller/job"
- "k8s.io/kubernetes/test/e2e/framework"
- )
- // WaitForAllJobPodsRunning wait for all pods for the Job named JobName in namespace ns to become Running. Only use
- // when pods will run for a long time, or it will be racy.
- func WaitForAllJobPodsRunning(c clientset.Interface, ns, jobName string, parallelism int32) error {
- return wait.Poll(framework.Poll, JobTimeout, func() (bool, error) {
- pods, err := GetJobPods(c, ns, jobName)
- if err != nil {
- return false, err
- }
- count := int32(0)
- for _, p := range pods.Items {
- if p.Status.Phase == v1.PodRunning {
- count++
- }
- }
- return count == parallelism, nil
- })
- }
- // WaitForJobComplete uses c to wait for completions to complete for the Job jobName in namespace ns.
- func WaitForJobComplete(c clientset.Interface, ns, jobName string, completions int32) error {
- return wait.Poll(framework.Poll, JobTimeout, func() (bool, error) {
- curr, err := c.BatchV1().Jobs(ns).Get(context.TODO(), jobName, metav1.GetOptions{})
- if err != nil {
- return false, err
- }
- return curr.Status.Succeeded == completions, nil
- })
- }
- // WaitForJobFinish uses c to wait for the Job jobName in namespace ns to finish (either Failed or Complete).
- func WaitForJobFinish(c clientset.Interface, ns, jobName string) error {
- return wait.PollImmediate(framework.Poll, JobTimeout, func() (bool, error) {
- curr, err := c.BatchV1().Jobs(ns).Get(context.TODO(), jobName, metav1.GetOptions{})
- if err != nil {
- return false, err
- }
- return jobutil.IsJobFinished(curr), nil
- })
- }
- // WaitForJobGone uses c to wait for up to timeout for the Job named jobName in namespace ns to be removed.
- func WaitForJobGone(c clientset.Interface, ns, jobName string, timeout time.Duration) error {
- return wait.Poll(framework.Poll, timeout, func() (bool, error) {
- _, err := c.BatchV1().Jobs(ns).Get(context.TODO(), jobName, metav1.GetOptions{})
- if apierrors.IsNotFound(err) {
- return true, nil
- }
- return false, err
- })
- }
- // WaitForAllJobPodsGone waits for all pods for the Job named jobName in namespace ns
- // to be deleted.
- func WaitForAllJobPodsGone(c clientset.Interface, ns, jobName string) error {
- return wait.PollImmediate(framework.Poll, JobTimeout, func() (bool, error) {
- pods, err := GetJobPods(c, ns, jobName)
- if err != nil {
- return false, err
- }
- return len(pods.Items) == 0, nil
- })
- }
|