Skip to content

Commit 23e82ab

Browse files
authored
Add container apps job specs (#21916)
* Adding Container App Jobs specs for review * Adding Container App Jobs specs for review * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | address comments * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | fix validations * Adding Container App Jobs specs for review | address comments * Adding Container App Jobs specs for review | address comments * Adding Container App Jobs specs for review | address comments * Adding Container App Jobs specs for review | address comments * Adding Container App Jobs specs for review | address comments * Adding Container App Jobs specs for review | address comments * Adding Container App Jobs specs for review | address comments * updating sub-resource name to jobs from containerAppsJobs * updating sub-resource name to jobs from containerAppsJobs * updating sub-resource name to jobs from containerAppsJobs * updating sub-resource name to jobs from containerAppsJobs * updating sub-resource name to jobs from containerAppsJobs * revert resource management version * revert resource management version * revert resource management version
1 parent 82be6d3 commit 23e82ab

File tree

13 files changed

+1465
-1
lines changed

13 files changed

+1465
-1
lines changed

custom-words.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2759,4 +2759,4 @@ logalertv1numresult
27592759
logalertv1metricmeasurement
27602760
resourcehealth
27612761
activitylog
2762-
budget
2762+
budget

specification/app/resource-manager/Microsoft.App/preview/2022-11-01-preview/CommonDefinitions.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,6 +1063,42 @@
10631063
"readOnly": true
10641064
}
10651065
}
1066+
},
1067+
"JobTemplate": {
1068+
"description": "Container Apps Job versioned application definition. Defines the desired state of an immutable revision. Any changes to this section Will result in a new revision being created",
1069+
"type": "object",
1070+
"properties": {
1071+
"initContainers": {
1072+
"description": "List of specialized containers that run before app containers.",
1073+
"type": "array",
1074+
"items": {
1075+
"$ref": "#/definitions/InitContainer"
1076+
},
1077+
"x-ms-identifiers": [
1078+
"name"
1079+
]
1080+
},
1081+
"containers": {
1082+
"description": "List of container definitions for the Container App.",
1083+
"type": "array",
1084+
"items": {
1085+
"$ref": "#/definitions/Container"
1086+
},
1087+
"x-ms-identifiers": [
1088+
"name"
1089+
]
1090+
},
1091+
"volumes": {
1092+
"description": "List of volume definitions for the Container App.",
1093+
"type": "array",
1094+
"items": {
1095+
"$ref": "#/definitions/Volume"
1096+
},
1097+
"x-ms-identifiers": [
1098+
"name"
1099+
]
1100+
}
1101+
}
10661102
}
10671103
},
10681104
"securityDefinitions": {

0 commit comments

Comments
 (0)