You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
280 B
15 lines
280 B
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: dms-migrations
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: dms-migrations
|
|
image: curlimages/curl
|
|
command:
|
|
- "curl"
|
|
- "www.google.com"
|
|
restartPolicy: Never
|
|
backoffLimit: 4
|
|
|