Delete task pods upon successful completion
This commit is contained in:
parent
4ec6acf731
commit
c500df8ca2
@ -60,7 +60,7 @@ rules:
|
|||||||
verbs: ["get"]
|
verbs: ["get"]
|
||||||
- apiGroups: [""]
|
- apiGroups: [""]
|
||||||
resources: ["pods"]
|
resources: ["pods"]
|
||||||
verbs: ["get", "list", "watch", "create", "update", "patch"]
|
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
|
||||||
---
|
---
|
||||||
kind: ClusterRoleBinding
|
kind: ClusterRoleBinding
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
@ -63,3 +63,4 @@ def run_on_node(fn, node):
|
|||||||
wait_for(is_finished, "task to finish")
|
wait_for(is_finished, "task to finish")
|
||||||
if task_pod.obj["status"]["phase"] != "Succeeded":
|
if task_pod.obj["status"]["phase"] != "Succeeded":
|
||||||
raise Exception(f"Task {name} failed")
|
raise Exception(f"Task {name} failed")
|
||||||
|
task_pod.delete()
|
||||||
|
Loading…
Reference in New Issue
Block a user