cri-o/vendor/k8s.io/kubernetes/test/fixtures/doc-yaml/user-guide/job.yaml

16 lines
262 B
YAML
Raw Normal View History

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