KubeLinter is a static analysis tool that checks Kubernetes YAML files and Helm charts to ensure the applications represented in them adhere to best practices.
kube-linter could be very useful, thanks for creating it!
As an alternative approach to combining multiple YAML files into one using the document start (---) and stop (...) separators, I prefer to use the List kind.
Unfortunately, this appears to be ignored by kube-linter.
Please consider supporting it.
Description of the existing behavior vs. expected behavior
Description of the problem/feature request
kube-linter
could be very useful, thanks for creating it!As an alternative approach to combining multiple YAML files into one using the document start (
---
) and stop (...
) separators, I prefer to use theList
kind.Unfortunately, this appears to be ignored by
kube-linter
.Please consider supporting it.
Description of the existing behavior vs. expected behavior
Using your documentation example:
Yields:
But, incorporating the
Pod
into aList
, fails:Yields (incorrectly):
Additional context
I have various occurrences of
List
's in my deployments that successfully deploy usingkubectl create ...
.I'm unable to use these currently with
kube-linter
becausekube-linter
doesn't supportList
.For example: