You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This document describes the schema for the [z/OS-specific section](config.md#platform-specific-configuration) of the [container configuration](config.md).
6
+
7
+
## <aname="configZOSDevices" />Devices
8
+
9
+
**`devices`** (array of objects, OPTIONAL) lists devices that MUST be available in the container.
10
+
The runtime MAY supply them however it likes.
11
+
12
+
Each entry has the following structure:
13
+
14
+
***`type`***(string, REQUIRED)* - type of device: `c`, `b`, `u` or `p`.
15
+
***`path`***(string, REQUIRED)* - full path to device inside container.
16
+
If a file already exists at `path` that does not match the requested device, the runtime MUST generate an error.
17
+
***`major, minor`***(int64, REQUIRED unless `type` is `p`)* - major, minor numbers for the device.
18
+
***`fileMode`***(uint32, OPTIONAL)* - file mode for the device.
19
+
20
+
The same `type`, `major` and `minor` SHOULD NOT be used for multiple devices.
0 commit comments