Configure, Unify, Execute
CUE is an open source configuration language which aims to make complex configurations more manageable and usable.
CUE is a constrained-based language. Constraints provide a powerful yet simple alternative to inheritance, a common source of complexity with other configuration languages.
The CUE tooling also provides integrated declarative scripting aimed at simplifying putting configurations to good use while giving static analysis tools maximum domain knowledge.
Some highlights:
- JSON superset: get started quickly
- convert existing YAML and JSON
- declarative scripting
- automatically simplify configurations
- formatter
- arbitrary-precision arithmetic
- rich APIs designed for automated tooling
- a formalism conducive to automated reasoning
- generate CUE templates from source code
- generate source code from CUE configurations (TODO)
If you already have Go installed, the short version is:
go get -u cuelang.org/go/cmd/cue
This will install the cue
command line tool.
For more details see Installing CUE.
A demonstration of how to convert and restructure an existing set of Kubernetes configurations is available in written form.
-
Language Specification: official CUE Language specification.
-
API: the API on godoc.org
-
Builtin packages: builtins available from CUE programs
-
cue
Command line reference: thecue
command
Our canonical Git repository is located at https://cue.googlesource.com.
To contribute, please read the Contribution Guide.
Note that we do not accept pull requests and that we use the issue tracker for bug reports and proposals only.
Unless otherwise noted, the CUE source files are distributed under the Apache 2.0 license found in the LICENSE file.
This is not an officially supported Google product.