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

47 lines
938 B
Plaintext

# Kubernetes Deployment Defaults
#
# Default values for K8s deployments
# Migrated from provisioning/kcl/k8s_deploy.k
let contracts = import "contracts.ncl" in
{
default_port = {
name = "http",
typ = "TCP",
} | contracts.K8sPort,
default_container = {
name = "main",
image = "nginx:latest",
imagePull = "IfNotPresent",
} | contracts.K8sContainers,
default_service = {
name = "default",
typ = "ClusterIP",
proto = "TCP",
ports = [],
} | contracts.K8sService,
default_volume = {
name = "data",
typ = "volumeClaim",
} | contracts.K8sVolume,
default_deploy_spec = {
replicas = 1,
hostUsers = true,
containers = [],
} | contracts.K8sDeploySpec,
default_service_mesh_config = {
mtls_enabled = true,
tracing_enabled = true,
} | contracts.K8sServiceMeshConfig,
default_ingress_config = {
tls_enabled = true,
} | contracts.K8sIngressConfig,
}