
Since kuryr-kubernetes has been retired, drop the images and use nginx instead. Change-Id: Ia533a85266571eda2951cd1e8e586d0f2b67bf48
31 lines
532 B
YAML
31 lines
532 B
YAML
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
run: curryjob
|
|
name: curryjob
|
|
spec:
|
|
completions: 5
|
|
parallelism: 2
|
|
template:
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
run: curryjob
|
|
spec:
|
|
containers:
|
|
- command: ["sh", "-c"]
|
|
args:
|
|
- echo CURRY
|
|
image: nginx
|
|
name: curryjob
|
|
resources:
|
|
limits: {}
|
|
requests: {}
|
|
restartPolicy: OnFailure
|
|
status:
|
|
conditions:
|
|
- status: True
|
|
type: Job
|