forked from HAL9000/cleveragents-core
26 lines
547 B
YAML
26 lines
547 B
YAML
schema_version: "1.0"
|
|
name: fs-mount
|
|
description: "A physical mount point on the local system"
|
|
resource_kind: physical
|
|
sandbox_strategy: copy_on_write
|
|
user_addable: true
|
|
built_in: true
|
|
cli_args:
|
|
- name: path
|
|
type: path
|
|
required: true
|
|
description: "Path to the mount point"
|
|
parent_types: []
|
|
child_types: ["fs-directory"]
|
|
auto_discovery:
|
|
enabled: true
|
|
rules:
|
|
- type: fs-directory
|
|
pattern: "/"
|
|
capabilities:
|
|
read: true
|
|
write: true
|
|
sandbox: true
|
|
checkpoint: false
|
|
handler: "cleveragents.resource.handlers.fs_mount"
|