Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions components/schemas/images/Image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ properties:
description: Arguments to pass to the builder during a build of this image.
additionalProperties:
type: string
use_disk:
type: boolean
description: If true, will skip using /dev/shm when building an image on factory. Allows for building much larger images.
- type: "null"

builder:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ title: ExternalVolumeOptions
type: object
description: Configuration options controlling the behavior of the volume.
required:
- read_only
- create
properties:
read_only:
create:
type: boolean
description: >
When true, the volume is attached as read-only and cannot be modified by
the consuming resource.
If the volume doesn't exist, attempt to create it on container start.
3 changes: 3 additions & 0 deletions platform/paths/images/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ post:
description: An object holding key value build time arguments needed for the Image during build time.
additionalProperties:
type: string
use_disk:
type: boolean
description: If true, will skip using /dev/shm when building an image on factory. Allows for building much larger images.
override:
type: object
description: An override object to be used for a single Image create request.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ patch:
identifier:
description: The new identifier of the external volume.
$ref: "../../../../components/schemas/Identifier.yml"
options:
$ref: ../../../../components/schemas/infrastructure/external-volumes/ExternalVolumeOptions.yml
about:
type: object
properties:
Expand Down