Introduction | Features | What is it for | Installation | Showcase | Documentation | Contributing | Roadmap
Kusion Configuration Language (KCL) is an open source constraint-based record and functional language. KCL improves the writing of a large number of complex configurations such as cloud native scenarios through mature programming language technology and practice, and is committed to building better modularity, scalability and stability around configuration, simpler logic writing, fast automation and good ecological extensionality.
You can use KCL to
- Generate low-level static configuration data like JSON, YAML, etc or integrate with existing data.
- Reduce boilerplate in configuration data with the schema modeling.
- Define schemas with rule constraints for configuration data and validate them automatically].
- Organize, simplify, unify and manage large configurations without side effects through gradient automation schemes.
- Manage large configurations scalably with isolated configuration blocks.
- Used as a platform engineering programming language to deliver modern app with Kusion Stack.
- Easy-to-use: Originated from high-level languages such as Python and Golang, incorporating functional language features with low side effects.
- Well-designed: Independent Spec-driven syntax, semantics, runtime and system modules design.
- Quick modeling: Schema-centric configuration types and modular abstraction.
- Rich capabilities: Configuration with type, logic and policy based on Config, Schema, Lambda, Rule.
- Stability: Configuration stability built on static type system, constraints, and rules.
- Scalability: High scalability through automatic merge mechanism of isolated config blocks.
- Fast automation: Gradient automation scheme of CRUD APIs, multilingual SDKs, language plugin
- High performance: High compile time and runtime performance using Rust & C and LLVM, and support compilation to native code and WASM.
- API affinity: Native support API ecological specifications such as OpenAPI, Kubernetes CRD, Kubernetes YAML spec.
- Development friendly: Friendly development experiences with rich language tools (Format, Lint, Test, Vet, Doc, etc.) and IDE plugins.
- Safety & maintainable: Domain-oriented, no system-level functions such as native threads and IO, low noise and security risk, easy maintenance and governance.
- Production-ready: Widely used in production practice of platform engineering and automation at Ant Group.
The simple answer:
- YAML is recommended if you need to write structured static K-V, or use Kubernetes' native tools
- HCL is recommended if you want to use programming language convenience to remove boilerplate with good human readability, or if you are already a Terraform user
- CUE is recommended if you want to use type system to improve stability and maintain scalable configurations
- KCL is recommended if you want types and modeling like a modern language, scalable configurations, in-house pure functions and rules, and production-ready performance and automation
A detailed feature and scenario comparison is here.
Download the latest release from GitHub and add {install-location}/kclvm/bin
to the environment PATH
.
./samples/kubernetes.k
is an example of generating kubernetes manifests.
apiVersion = "apps/v1"
kind = "Deployment"
metadata = {
name = "nginx"
labels.app = "nginx"
}
spec = {
replicas = 3
selector.matchLabels = metadata.labels
template.metadata.labels = metadata.labels
template.spec.containers = [
{
name = metadata.name
image = "${metadata.name}:1.14.2"
ports = [{ containerPort = 80 }]
}
]
}
We can execute the following command to get a YAML output.
kcl ./samples/kubernetes.k
YAML output
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
labels:
app: nginx
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80
Detailed documentation is available at KCL Website
See Developing Guide.
See KCL Roadmap.
See the community for ways to join us.