We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'd like to use config-lint to check Kubernetes manifests output by kustomize build. That produces a YAML stream containing multiple documents, like:
config-lint
kustomize build
apiVersion: v1 kind: Namespace metadata: name: project-operator spec: {} --- apiVersion: v1 kind: Namespace metadata: name: external-secrets spec: {} --- apiVersion: v1 kind: Namespace metadata: name: gpu-operator-resources spec: {}
If I try to process this with config-lint, I get:
$ config-lint -rules rules out.yaml { "FilesScanned": [ "out.yaml" ], "Violations": [], "ResourcesScanned": [] }
That is, despite config-lint says that it has checked no resources, even though the file contains many resources.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'd like to use
config-lint
to check Kubernetes manifests output bykustomize build
. That produces a YAML stream containing multiple documents, like:If I try to process this with
config-lint
, I get:That is, despite
config-lint
says that it has checked no resources, even though the file contains many resources.The text was updated successfully, but these errors were encountered: