Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add shared directory to container.config.runtime #196

Merged
merged 9 commits into from
Nov 2, 2023
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
13 changes: 13 additions & 0 deletions components/schemas/containers/config/ContainerIntegrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,16 @@ properties:
allOf:
- $ref: ../../Duration.yml
default: "365d"
shared_directories:
nullable: true
type: object
additionalProperties:
type: object
required:
- writable
- mount_point
properties:
writable:
type: boolean
mount_point:
type: string
7 changes: 7 additions & 0 deletions components/schemas/containers/config/ContainerRuntime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,13 @@ properties:
type: array
items:
$ref: seccomp/SeccompRule.yml
host:
nullable: true
type: object
properties:
expose_proc:
nullable: true
type: boolean
rootfs:
type: object
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,16 @@ properties:
allOf:
- $ref: ../../Duration.yml
default: "365d"
shared_directories:
nullable: true
type: object
additionalProperties:
type: object
required:
- writable
- mount_point
properties:
writable:
type: boolean
mount_point:
type: string
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,13 @@ properties:
- SCMP_CMP_GE
- SCMP_CMP_GT
- SCMP_CMP_MASKED_EQ
host:
nullable: true
type: object
properties:
expose_proc:
nullable: true
type: boolean
privileged:
type: boolean
capabilities:
Expand Down