-
-
Notifications
You must be signed in to change notification settings - Fork 202
feat: mvp cuelang implementation #1322
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
I've been meaning to do it for months! Thank you Lorenzo! |
This is an MVP of compiling CUE modules with Kapitan. It pretty much follows the I've tested it locally by building the Docker image and testing it against a minimal project obtained by:
parameters:
your_component:
some_parameter: true
kapitan:
compile:
- output_path: cute
input_type: cuelang
input_paths:
- templates/cue
input:
some_input: true
package main
hello: "world" |
105af69
to
2dbab1c
Compare
this is great @lorenzofelletti. Would you mind adding a little bit of documentation to the documentation site, and some tests? Then I think we are ready to ship |
Yes, you're right! I'll add them! |
Fixes #257
Proposed Changes
Docs and Tests