mirror of
https://github.com/slurm-personal/school-dev-k8s.git
synced 2026-06-27 13:50:24 +00:00
19 lines
321 B
YAML
19 lines
321 B
YAML
---
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: hello
|
|
spec:
|
|
backoffLimit: 2
|
|
activeDeadlineSeconds: 60
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: hello
|
|
image: busybox
|
|
args:
|
|
- /bin/sh
|
|
- -c
|
|
- date; echo Hello from the Kubernetes cluster
|
|
restartPolicy: Never
|