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.
18 lines
362 B
18 lines
362 B
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: dms-migrations
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: dms-migrations
|
|
image: curlimages/curl
|
|
command:
|
|
- "curl"
|
|
- "-k"
|
|
- "-X"
|
|
- "GET"
|
|
- "https://172.31.112.1:5001/swagger/index.html"
|
|
restartPolicy: Never
|
|
backoffLimit: 4
|
|
|