Jesús Pérez 44648e3206
chore: complete nickel migration and consolidate legacy configs
- Remove KCL ecosystem (~220 files deleted)
- Migrate all infrastructure to Nickel schema system
- Consolidate documentation: legacy docs → provisioning/docs/src/
- Add CI/CD workflows (.github/) and Rust build config (.cargo/)
- Update core system for Nickel schema parsing
- Update README.md and CHANGES.md for v5.0.0 release
- Fix pre-commit hooks: end-of-file, trailing-whitespace
- Breaking changes: KCL workspaces require migration
- Migration bridge available in docs/src/development/
2026-01-08 09:55:37 +00:00

55 lines
1.4 KiB
Plaintext

{
StorageVol = {
name | String,
size | Number | default = 0,
total | Number | default = size,
type | String | default = "ext4", # ext4 | xfs | btrfs | raw | zfs
mount | Bool | default = true,
mount_path | String | optional,
fstab | Bool | default = true,
},
Storage = {
name | String,
size | Number | default = 0,
total | Number | default = size,
type | String | default = "ext4", # ext4 | xfs | btrfs | raw | zfs
mount | Bool | default = true,
mount_path | String | optional,
fstab | Bool | default = true,
parts | default = [],
},
TaskServDef = {
name | String,
install_mode | String | default = "library", # getfile | library | server | library-server | server-library
profile | String | default = "default",
target_save_path | String | default = "",
},
ClusterDef = {
name | String,
profile | String | default = "default",
target_save_path | String | default = "",
},
ScaleData = {
def | String,
disabled | Bool | default = false,
mode | String | default = "manual", # auto | manual | ondemand
expire | String | optional,
from | String | optional,
to | String | optional,
},
ScaleResource = {
default,
fallback | optional,
up | optional,
down | optional,
min | optional,
max | optional,
path | String | default = "/etc/scale_provisioning",
},
}