-
Notifications
You must be signed in to change notification settings - Fork 0
/
job.json
34 lines (34 loc) · 1 KB
/
job.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"job": {
"type": "Microsoft.Batch/batchAccounts/jobs",
"apiVersion": "2016-12-01",
"properties": {
"id": "myjob",
"constraints": {
"maxWallClockTime": "PT5H",
"maxTaskRetryCount": 1
},
"poolInfo": {
"poolId": "mypool"
},
"taskFactory": {
"type": "parametricSweep",
"parameterSets": [{
"start": 1,
"end": 10,
"step": 1
}],
"repeatTask": {
"commandLine": "/bin/bash -c 'echo Hello world from task {0}; sleep 120'",
"constraints": {
"retentionTime":"PT1H"
},
"containerSettings": {
"imageName": "ubuntu:20.04"
}
}
},
"onAllTasksComplete": "terminatejob"
}
}
}