- 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/
30 lines
955 B
Plaintext
30 lines
955 B
Plaintext
# Infrastructure Layer Definition
|
|
# Points to specific infrastructure overrides (runtime-resolved)
|
|
|
|
schema InfraLayer {
|
|
name: str = "infra"
|
|
description: str = "Infrastructure-specific configurations and overrides"
|
|
priority: int = 300
|
|
path: str = "dynamic" # Resolved at runtime based on infra name
|
|
|
|
# Dynamic paths (resolved at runtime)
|
|
taskservs_path: str = "workspace/infra/${infra_name}/taskservs"
|
|
overrides_path: str = "workspace/infra/${infra_name}/overrides"
|
|
servers_path: str = "workspace/infra/${infra_name}/defs"
|
|
|
|
# Layer metadata
|
|
version: str = "1.0.0"
|
|
runtime_resolved: bool = True
|
|
extends: [str] = ["workspace", "core"]
|
|
overrides_allowed: bool = True
|
|
|
|
# Override capabilities
|
|
can_override: [str] = [
|
|
"taskserv_configs", "provider_defaults",
|
|
"server_definitions", "cluster_settings"
|
|
]
|
|
}
|
|
|
|
# Layer instance (requires runtime resolution)
|
|
infra_layer = InfraLayer {}
|