You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to use this tool together with Helm to render kubernetes resource templates and validate them. Helm does output a yaml stream seperated by --- onto stdout. The cmd version of kubeyaml seems to only scan the first yaml structure encountered. To use this tool effectively it should continue until hitting the EOF and validate each section. F.e.
This is a valid yaml stream. The second section does produce the expected error on the wrong indentation (unknown key) when scanned individually, this is however ignored when read because the first section is valid.
The text was updated successfully, but these errors were encountered:
This adds the ability to parse YAML streams (as produced by helm
template/helmfile template). As those tools might spill out empty
manifests and kubeyaml fails on those, I've addd an option to ignore
them.
Fixeschuckha#7
This adds the ability to parse YAML streams (as produced by helm
template/helmfile template). As those tools might spill out empty
manifests and kubeyaml fails on those, I've addd an option to ignore
them.
Fixeschuckha#7
This adds the ability to parse YAML streams (as produced by helm
template/helmfile template). As those tools might spill out empty
manifests and kubeyaml fails on those, I've addd an option to ignore
them.
Fixeschuckha#7
I want to use this tool together with
Helm
to render kubernetes resource templates and validate them. Helm does output a yaml stream seperated by---
onto stdout. The cmd version of kubeyaml seems to only scan the first yaml structure encountered. To use this tool effectively it should continue until hitting the EOF and validate each section. F.e.This is a valid yaml stream. The second section does produce the expected error on the wrong indentation (unknown key) when scanned individually, this is however ignored when read because the first section is valid.
The text was updated successfully, but these errors were encountered: