Move Guide topic: Jobs (#2853)

* Move Guide topic: Jobs

* add job.yaml file

* change title
This commit is contained in:
Andrew Chen
2017-03-15 18:20:29 -07:00
committed by GitHub
parent 7efaa0e1c2
commit f7648e7c27
4 changed files with 405 additions and 380 deletions
+15
View File
@@ -0,0 +1,15 @@
apiVersion: batch/v1
kind: Job
metadata:
name: pi
spec:
template:
metadata:
name: pi
spec:
containers:
- name: pi
image: perl
command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"]
restartPolicy: Never