commit | 858efa92ad0bfd9d477145cac9109e3fffd2897b | [log] [tgz] |
---|---|---|
author | Marcel van Lohuizen <mpvl@golang.org> | Mon May 10 18:37:38 2021 +0200 |
committer | Marcel van Lohuizen <mpvl@golang.org> | Tue May 11 06:47:54 2021 +0000 |
tree | 41aa489577432c0219929c043c84f1f71eca361f | |
parent | cd286a8e4b63e54835dbbbb3d5e2e1d56848a9d7 [diff] |
cue/ast/astutil: fix resolution bugs This fixes several bugs and documentation bugs in identifier resolution. 1. Resolution in comprehensions would resolve identifiers to themselves. 2. Label aliases now no longer bind to references outside the scope of the field. The compiler would catch this invalid bind and report an error, but it is better not to bind in the first place. 3. Remove some more mentions of Template labels. 4. Documentation for comprehensions was incorrect (Scope and Node were reversed). 5. Aliases X in `X=[string]: foo` should only be visible in foo. Fixes #946 Change-Id: I3d070e5c67fce55811c1f3fff1e13c38b8d9eeb7 Reviewed-on: https://cue-review.googlesource.com/c/cue/+/9741 Reviewed-by: CUE cueckoo <cueckoo@gmail.com> Reviewed-by: Marcel van Lohuizen <mpvl@golang.org>
Configure, Unify, Execute
CUE is an open source data constraint language which aims to simplify tasks involving defining and using data.
It is a superset of JSON, allowing users familiar with JSON to get started quickly.
You can use CUE to
CUE merges the notion of schema and data. The same CUE definition can simultaneously be used for validating data and act as a template to reduce boilerplate. Schema definition is enriched with fine-grained value definitions and default values. At the same time, data can be simplified by removing values implied by such detailed definitions. The merging of these two concepts enables many tasks to be handled in a principled way.
Constraints provide a simple and well-defined, yet powerful, alternative to inheritance, a common source of complexity with configuration languages.
The CUE scripting layer defines declarative scripting, expressed in CUE, on top of data. This solves three problems: working around the closedness of CUE definitions (we say CUE is hermetic), providing an easy way to share common scripts and workflows for using data, and giving CUE the knowledge of how data is used to optimize validation.
There are many tools that interpret data or use a specialized language for a specific domain (Kustomize, Ksonnet). This solves dealing with data on one level, but the problem it solves may repeat itself at a higher level when integrating other systems in a workflow. CUE scripting is generic and allows users to define any workflow.
CUE is designed for automation. Some aspects of this are:
Download the latest release from GitHub.
Using Homebrew, you can install using the CUE Homebrew tap:
brew install cuelang/tap/cue
If you already have Go installed, the short version is:
GO111MODULE=on go get cuelang.org/go/cmd/cue
Or, if you are using Go 1.16:
go install cuelang.org/go/cmd/cue@latest
This will install the cue
command line tool.
For more details see Installing CUE.
The fastest way to learn the basics is to follow the tutorial on basic language constructs.
A more elaborate tutorial demonstrating 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 pkg.go.dev
Builtin packages: builtins available from CUE programs
cue
Command line reference: the cue
command
Our canonical Git repository is located at https://cue.googlesource.com.
To contribute, please read the Contribution Guide.
To report issues or make a feature request, use the issue tracker.
Changes can be contributed using Gerrit or Github pull requests.
You can get in touch with the cuelang community in the following ways:
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.