Тёмный
cuelang
cuelang
cuelang
Подписаться
CUE is an open source language, with a rich set of APIs and tooling, for defining, generating, and validating all kinds of data: configuration, APIs, database schemas, code, … you name it.
CUE Community Update 2024-07-25
50:09
3 месяца назад
CUE Community Update 2024-05-29
38:52
4 месяца назад
CUE Modules Proposal feedback session 2024-05-16
21:26
5 месяцев назад
CUE Community Update 2024-04-16
1:03:15
6 месяцев назад
CUE Modules Proposal feedback session 2024-04-18
22:35
6 месяцев назад
CUE Modules Proposal feedback session 2024-03-28
48:40
6 месяцев назад
CUE Docs and Content call 2024-03-05
1:02:53
7 месяцев назад
CUE Community Call 2024-03-06
55:41
7 месяцев назад
CUE Modules Proposal feedback session 2024-02-22
42:31
8 месяцев назад
CUE Modules Proposal feedback session 2024-02-08
43:36
8 месяцев назад
CUE Modules Proposal feedback session 2024-01-25
31:41
9 месяцев назад
CUE Modules Proposal feedback session 2024-01-11
1:05:06
9 месяцев назад
CUE Modules Proposal feedback session 2023-12-21
46:40
10 месяцев назад
CUE Community Call 2023-12-12
50:43
10 месяцев назад
CUE Modules Proposal feedback session 2023-12-07
41:15
10 месяцев назад
CUE Modules Proposal feedback session 2023-11-09
30:17
11 месяцев назад
SIG-infra community meeting, October 26, 2023
51:19
11 месяцев назад
CUE Docs & Content Call 2023-10-10
1:01:56
Год назад
CUE Community Call 2023-10-03
56:15
Год назад
CUE Community Call 2023-09-05
1:02:05
Год назад
Комментарии
@ytdlgandalf
@ytdlgandalf Месяц назад
Its all pretty cuel
@ManuelBTC21
@ManuelBTC21 Месяц назад
Comparison of Pkl vs Cue might be interesting.
@vovs03
@vovs03 3 месяца назад
Cue-api-java 🎉
@ytdlgandalf
@ytdlgandalf 7 месяцев назад
I think you guys are pretty much nailing the documentation. It's all bit more verbose, but I really like that. The previous documentation never 'reassured' the reader, the new docs do.
@ytdlgandalf
@ytdlgandalf 7 месяцев назад
"What languages would you like to see next?" Rust people wondering if they're invisible 8)
@ytdlgandalf
@ytdlgandalf 7 месяцев назад
12:55 stof is dutch for dust, and now you know.
@ytdlgandalf
@ytdlgandalf 8 месяцев назад
i'm really excited. Thanks for continuing this promising project!
@Taddy_Mason
@Taddy_Mason 8 месяцев назад
This is very interesting
@gedw99
@gedw99 8 месяцев назад
Exciting roadmap. Thank you
@diinamyka
@diinamyka 10 месяцев назад
Can't wait to have dep mgt released!
@bryamalfaro
@bryamalfaro 10 месяцев назад
thanks guys for your work, this is amazing
@renaud72
@renaud72 11 месяцев назад
Configurations mean different values per environment, which is often solved with overlays in order to avoid repetition.How does CUE tackle the problem then ?
@computershit
@computershit Год назад
I swear to god if I hear someone from across the pond say CONfig one more time when they never say CONfiguration but confFIGuration like the rest of us
@joebowbeer
@joebowbeer Год назад
00:00 A practical guide to CUE 01:50 What is CUE? 07:45 Demo time 11:10 Adding Validation 14:40 File organization 21:01 Using the Tooling Layer 25:53 Importing schema 28:40 Going CUE native 31:20 Sharimg validation logic 34:06 Conclusions
@slackvictor
@slackvictor Год назад
very impressive
@bryamalfaro
@bryamalfaro Год назад
Great tool, it seem very powerfull
@TheFocusedCoder
@TheFocusedCoder 2 года назад
This is fantastic!
@TrevorSullivan
@TrevorSullivan 2 года назад
Why not just contribute to existing linting tools, like Kube-Linter? Or contribute more rules to Kyverno? Or put your support behind the Conftest/ Gatekeeper community? What does Cue do that other tools don't already do?
@VincentFree
@VincentFree 2 года назад
Kubernetes is an example but cue isn't specific to kubernetes or even cloud native application stacks etc. It's a tool focusing on making our lives better by adding great validation and real types to our configuration files. Also it has a package manager so it's also easy to share definitions etc. I'm just reading into it and to me it sounds like a great way to manage a lot of repetition and add good (data) validation.
@TrevorSullivan
@TrevorSullivan 2 года назад
@@VincentFree my understanding is that Conftest is the exact same type of genetic validation tool. Conftest uses Rego, and can validate any kind of configuration file.
@decoyslois
@decoyslois 2 года назад
The lattice is a different way to compose configuration entirely. There isn’t really a mature comparison case out there. You can type ‘as you go’, you don’t have to add a totally separate tool just to validate. It allows you to unify configuration (or any data really) without inheritance. If that doesn’t ring some bells then maybe it’s not for you.
@decoyslois
@decoyslois 2 года назад
@@TrevorSullivan Conftest now natively supports CUE.
@soubinan
@soubinan Год назад
And is a bit like you say "why do we have rust/golang when we already have c++ and java and why not contributing to them rather than create a new one". Yeah maybe yo are this kind of persons 😅.. Kube-linter and Kyverno uses yaml, and Conftest/Gatekeeper, rego 1. It is not a secret yaml is not disigned for logic but for data only, and this is a real limitation when enter real life complex use cases 2. Rego is a niche and designed for validation logic, not data/configuration description (and not very dev friendly lets be honnest) 3. Cue is not bringing something new. It propose a facility for something already existing (and used by everything), JSON. yep because a the end of the day (almost) all is json 4. Consider cue as the best of two worlds (as a Yaml + Rego but directly based on json) 5. There are plenty of use cases where we need a powerfull configuration langage that is safe, "easy"and extensible (not only in kube and cloud world) and solutions as CUE (or JSONNET) are trying to help on that If you still feel it is unnecessary, it simply means you do not have yet the need, but I can ensure you you will (except if you like to fight against rego/yaml limitations), at least if you are working on any complex configuration setup
@decoyslois
@decoyslois 2 года назад
What's the link to the working Actions schema?
@decoyslois
@decoyslois 2 года назад
You can use the ones on the official Github action for setting up CUE: github.com/cue-lang/setup-cue/tree/main/cue.mod/pkg/json.schemastore.org/github
@pauljolly4546
@pauljolly4546 2 года назад
Please find the example here: github.com/cue-examples/github-actions-example