- 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/
24 lines
601 B
Plaintext
24 lines
601 B
Plaintext
# | Server defaults configuration values
|
|
# | Migrated from: provisioning/kcl/defaults.k
|
|
# | Pattern: Pure defaults (no schema, no contracts)
|
|
|
|
{
|
|
server_defaults = {
|
|
lock = false,
|
|
time_zone = "UTC",
|
|
running_wait = 10,
|
|
running_timeout = 200,
|
|
storage_os_find = "name: debian-12 | arch: x86_64",
|
|
network_utility_ipv4 = true,
|
|
network_utility_ipv6 = false,
|
|
network_public_ipv4 = true,
|
|
network_public_ipv6 = false,
|
|
labels = "",
|
|
user = "",
|
|
user_home = "/home/${user}",
|
|
user_ssh_port = 22,
|
|
fix_local_hosts = true,
|
|
installer_user = "${user}",
|
|
},
|
|
}
|