Add job running into completion in ID Localization. (#16705)

This commit is contained in:
Irvi Aini
2019-12-05 11:40:31 +07:00
committed by Kubernetes Prow Robot
parent ac1b7eee8e
commit 80e5ceb0d1
2 changed files with 518 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
apiVersion: batch/v1
kind: Job
metadata:
name: pi
spec:
template:
spec:
containers:
- name: pi
image: perl
command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"]
restartPolicy: Never
backoffLimit: 4