Add job type
Signed-off-by: chenliu1993 <cl2037829916@gmail.com>
This commit is contained in:
parent
9261f26bfe
commit
927974da11
@ -73,6 +73,9 @@ func FetchControllerObj(kind, name, namespace string, clientset *kubernetes.Clie
|
|||||||
return clientset.AppsV1().ReplicaSets(namespace).Get(context.TODO(), name, metav1.GetOptions{})
|
return clientset.AppsV1().ReplicaSets(namespace).Get(context.TODO(), name, metav1.GetOptions{})
|
||||||
case "DaemonSet":
|
case "DaemonSet":
|
||||||
return clientset.AppsV1().DaemonSets(namespace).Get(context.TODO(), name, metav1.GetOptions{})
|
return clientset.AppsV1().DaemonSets(namespace).Get(context.TODO(), name, metav1.GetOptions{})
|
||||||
|
case "Job":
|
||||||
|
// Both CronJob-managed and Job-managed pods are of type Job owner
|
||||||
|
return clientset.BatchV1().Jobs(namespace).Get(context.TODO(), name, metav1.GetOptions{})
|
||||||
default:
|
default:
|
||||||
return nil, fmt.Errorf("unsupported controller kind %s", kind)
|
return nil, fmt.Errorf("unsupported controller kind %s", kind)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user