mirror of https://github.com/rancher/gitjob.git
21 lines
470 B
YAML
21 lines
470 B
YAML
apiVersion: gitjob.cattle.io/v1
|
|
kind: GitJob
|
|
metadata:
|
|
name: example
|
|
namespace: default
|
|
spec:
|
|
git:
|
|
branch: master
|
|
repo: https://github.com/StrongMonkey/gitjobs-example
|
|
jobSpec:
|
|
backoffLimit: 1
|
|
template:
|
|
spec:
|
|
restartPolicy: "Never"
|
|
containers:
|
|
- name: termination-demo-container
|
|
imagePullPolicy: "Always"
|
|
image: "strongmonkey1992/test:termination"
|
|
command:
|
|
- /usr/bin/test.sh
|