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

36 lines
1.0 KiB
Plaintext

# | Server defaults contracts (schema definitions)
# | Migrated from: provisioning/kcl/defaults.k
# | Pattern: Pure schema definitions using Nickel contracts
{
ServerDefaults = {
lock | Bool,
time_zone | String,
running_wait | Number,
running_timeout | Number,
storage_os_find | String,
network_utility_ipv4 | Bool,
network_utility_ipv6 | Bool,
network_public_ipv4 | Bool,
network_public_ipv6 | Bool,
labels | String,
user | String,
user_home | String,
user_ssh_port | Number,
fix_local_hosts | Bool,
installer_user | String,
priv_cidr_block | String | optional,
ssh_key_path | String | optional,
ssh_key_name | String | optional,
network_public_ip | String | optional,
network_private_name | String | optional,
network_private_id | String | optional,
primary_dns | String | optional,
secondary_dns | String | optional,
main_domain | String | optional,
domains_search | String | optional,
user_ssh_key_path | String | optional,
scale | Dyn | optional,
},
}