provisioning/workspace/layers/workspace.layer.k
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

31 lines
859 B
Plaintext

# Workspace Layer Definition
# Points to workspace/templates (shared templates)
schema WorkspaceLayer {
name: str = "workspace"
description: str = "Shared workspace templates and patterns"
priority: int = 200
path: str = "../templates"
# Template paths
taskservs_path: str = "../templates/taskservs"
providers_path: str = "../templates/providers"
servers_path: str = "../templates/servers"
clusters_path: str = "../templates/clusters"
# Layer metadata
version: str = "1.0.0"
source_infra: str = "wuji"
provides: [str] = [
"kubernetes-base", "kubernetes-ha", "kubernetes-single",
"upcloud-defaults", "aws-defaults", "server-patterns"
]
# Template inheritance
extends: [str] = ["core"]
overrides_allowed: bool = True
}
# Layer instance
workspace_layer = WorkspaceLayer {}