Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b9e2cc2
Adding Container App Jobs specs for review
anandanthony Dec 16, 2022
15d9aa6
Adding Container App Jobs specs for review
anandanthony Dec 16, 2022
43d401f
Adding Container App Jobs specs for review | fix validations
anandanthony Dec 16, 2022
c4b6329
Adding Container App Jobs specs for review | fix validations
anandanthony Dec 16, 2022
a3b9a5a
Adding Container App Jobs specs for review | fix validations
anandanthony Dec 16, 2022
6b79150
Adding Container App Jobs specs for review | fix validations
anandanthony Dec 16, 2022
5d17bef
Adding Container App Jobs specs for review | fix validations
anandanthony Dec 16, 2022
94eeaab
Adding Container App Jobs specs for review | address comments
anandanthony Dec 19, 2022
c11abae
Adding Container App Jobs specs for review | fix validations
anandanthony Dec 20, 2022
efaf9bb
Adding Container App Jobs specs for review | fix validations
anandanthony Dec 20, 2022
483e2ad
Adding Container App Jobs specs for review | fix validations
anandanthony Dec 20, 2022
d34684d
Adding Container App Jobs specs for review | fix validations
anandanthony Dec 21, 2022
a116042
Adding Container App Jobs specs for review | fix validations
anandanthony Dec 22, 2022
f139262
Adding Container App Jobs specs for review | fix validations
anandanthony Dec 22, 2022
5a2cae7
Adding Container App Jobs specs for review | fix validations
anandanthony Jan 5, 2023
8334426
Adding Container App Jobs specs for review | fix validations
anandanthony Jan 5, 2023
52b3e54
Adding Container App Jobs specs for review | fix validations
anandanthony Jan 5, 2023
9a8bcd8
Adding Container App Jobs specs for review | fix validations
anandanthony Jan 5, 2023
946effb
Adding Container App Jobs specs for review | address comments
anandanthony Jan 6, 2023
4fd925f
Adding Container App Jobs specs for review | address comments
anandanthony Jan 6, 2023
77c279a
Adding Container App Jobs specs for review | address comments
anandanthony Jan 6, 2023
77734ba
Adding Container App Jobs specs for review | address comments
anandanthony Jan 6, 2023
53822b5
Adding Container App Jobs specs for review | address comments
anandanthony Jan 7, 2023
c9422ba
Adding Container App Jobs specs for review | address comments
anandanthony Jan 7, 2023
438fa8f
Adding Container App Jobs specs for review | address comments
anandanthony Jan 17, 2023
c7584e6
updating sub-resource name to jobs from containerAppsJobs
anandanthony Jan 28, 2023
af72d15
updating sub-resource name to jobs from containerAppsJobs
anandanthony Jan 28, 2023
cddfeda
updating sub-resource name to jobs from containerAppsJobs
anandanthony Jan 28, 2023
fda0a58
updating sub-resource name to jobs from containerAppsJobs
anandanthony Jan 28, 2023
0f37f16
updating sub-resource name to jobs from containerAppsJobs
anandanthony Jan 28, 2023
fbc3d72
revert resource management version
anandanthony Feb 4, 2023
ab7abe8
revert resource management version
anandanthony Feb 4, 2023
0a28508
revert resource management version
anandanthony Feb 4, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2759,4 +2759,4 @@ logalertv1numresult
logalertv1metricmeasurement
resourcehealth
activitylog
budget
budget
Original file line number Diff line number Diff line change
Expand Up @@ -1063,6 +1063,42 @@
"readOnly": true
}
}
},
"JobTemplate": {
"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",
"type": "object",
"properties": {
"initContainers": {
"description": "List of specialized containers that run before app containers.",
"type": "array",
"items": {
"$ref": "#/definitions/InitContainer"
},
"x-ms-identifiers": [
"name"
]
},
"containers": {
"description": "List of container definitions for the Container App.",
"type": "array",
"items": {
"$ref": "#/definitions/Container"
},
"x-ms-identifiers": [
"name"
]
},
"volumes": {
"description": "List of volume definitions for the Container App.",
"type": "array",
"items": {
"$ref": "#/definitions/Volume"
},
"x-ms-identifiers": [
"name"
]
}
}
}
},
"securityDefinitions": {
Expand Down
Loading