-
Notifications
You must be signed in to change notification settings - Fork 302
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
cmd/cue: import should ignore null documents #1039
Comments
Original reply by @uhthomas in cuelang/cue#1039 (comment) I hit this quite a lot when importing Kubernetes generated manifests, like Reloader's manifest. The output ends up being lots of Not really sure if this is a bug or a feature request as I can imagine scenarios where this behavior could be desired. |
Original reply by @uhthomas in cuelang/cue#1039 (comment) Not sure if this should be a separate issue -- the imported CUE definitions get really weird with comments. This is the output for the example manifest I linked earlier: // <snip>
}, null, null, null, {
// Source: reloader/templates/role.yaml
// Source: reloader/templates/rolebinding.yaml
// Source: reloader/templates/service.yaml
// Source: reloader/templates/serviceaccount.yaml
apiVersion: "v1"
// </snip> All of the comments from the "null" documents get shoved into the proceeding object. Interestingly, if there is no proceeding object, these comments are just dropped entirely. ---
some_key: some value
---
# some comment
---
# some other comment
--- [{
some_key: "some value"
}, null, null, null] |
Original reply by @myitcv in cuelang/cue#1039 (comment)
It's not clear to me from the Yaml spec that what CUE does here is wrong, indeed quite the opposite: https://yaml.org/spec/1.2/spec.html#id2786563 So I would instead consider this a feature request. With the query syntax (#165) something like this could be quite natural/easy to represent too.
Comments should indeed be a separate issue (I understand from @mpvl comments are a "challenge" when it comes to Yaml). Marking as "Triage" for discussion with @mpvl in any case. |
Originally opened by @uhthomas in cuelang/cue#1039
What version of CUE are you using (
cue version
)?Does this issue reproduce with the latest release?
Yes.
What did you do?
Run
cue import --list test.yaml
against a YAML file with null documents:What did you expect to see?
Two CUE objects.
What did you see instead?
Three CUE objects, one being null.
The text was updated successfully, but these errors were encountered: