File tree Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 6161 "id" : " https://opencontainers.org/schema/bundle/linux/resources" ,
6262 "type" : " object" ,
6363 "properties" : {
64+ "devices" : {
65+ "id" : " https://opencontainers.org/schema/bundle/linux/resources/devices" ,
66+ "oneOf" : [
67+ {
68+ "type" : " array" ,
69+ "items" : {
70+ "$ref" : " defs-linux.json#/definitions/DeviceCgroup"
71+ }
72+ },
73+ {
74+ "type" : " null"
75+ }
76+ ]
77+ },
6478 "oomScoreAdj" : {
6579 "id" : " https://opencontainers.org/schema/bundle/linux/resources/oomScoreAdj" ,
6680 "type" : " integer" ,
Original file line number Diff line number Diff line change 217217 }
218218 ]
219219 },
220+ "DeviceCgroup" : {
221+ "type" : " object" ,
222+ "properties" : {
223+ "allow" : {
224+ "type" : " boolean"
225+ },
226+ "type" : {
227+ "$ref" : " defs.json#/definitions/stringPointer"
228+ },
229+ "major" : {
230+ "oneOf" : [
231+ {
232+ "$ref" : " #/definitions/Major"
233+ },
234+ {
235+ "type" : " null"
236+ }
237+ ]
238+ },
239+ "minor" : {
240+ "oneOf" : [
241+ {
242+ "$ref" : " #/definitions/Minor"
243+ },
244+ {
245+ "type" : " null"
246+ }
247+ ]
248+ },
249+ "access" : {
250+ "$ref" : " defs.json#/definitions/stringPointer"
251+ }
252+ }
253+ },
220254 "NetworkInterfacePriority" : {
221255 "type" : " object" ,
222256 "properties" : {
You can’t perform that action at this time.
0 commit comments