kubeval icon indicating copy to clipboard operation
kubeval copied to clipboard

cannot validate CustomResourceDefinitions

Open mattnworb opened this issue 6 years ago • 38 comments

Apologies if this should be created against https://github.com/garethr/kubernetes-json-schema instead.

Attempting to validate a apiextensions.k8s.io/v1beta1 CustomResourceDefinition resource fails as the schema file in $VERSION-standalone is empty:

1 error occurred:

* Problem loading schema from the network at https://raw.githubusercontent.com/garethr/kubernetes-json-schema/master/v1.8.5-standalone/customresourcedefinition.json: EOF
[mattbrown@mattmbp kubernetes-json-schema]$ wc -c v1.*-standalone/customresourcedefinition.json
       0 v1.8.0-standalone/customresourcedefinition.json
       0 v1.8.1-standalone/customresourcedefinition.json
       0 v1.8.2-standalone/customresourcedefinition.json
       0 v1.8.3-standalone/customresourcedefinition.json
       0 v1.8.4-standalone/customresourcedefinition.json
       0 v1.8.5-standalone/customresourcedefinition.json
       0 v1.8.6-standalone/customresourcedefinition.json
       0 v1.9.0-standalone/customresourcedefinition.json
       0 total

Is this intentional? It seems impossible in the current form to lint any CustomResourceDefinitions. The kubernetes-json-schema repo does have non-0 byte versions of the schema in the non-standalone directories (i.e. in /v1.8.0/) but kubeval is hardcoded to load the -standalone flavor of each schema.

mattnworb avatar Jan 26 '18 15:01 mattnworb

Ah, yes. At present kubeval doesn't handle CRDs. I have some ideas for how to fix that but haven't quite had time, and those 0 byte files are a bug in the script used to extract the schemas. I'll at least try and provide better error handling for this. Thanks for opening the issue.

garethr avatar Feb 24 '18 09:02 garethr

We're hitting this same issue, unfortunately. I even tried doing kubectl apply --recursive --dry-run -f . in the directory that contains our Yaml files in an effort to get our k8s cluster itself to validate our Yaml (some of which rely on CRDs.) Just a piece of advice to anyone that may try the same approach: this may seem to work for a while. But only because CRDs that are created then deleted get cached for the purposes of subsequent calls to kubectl apply --dry-run. So, if you've ever actually run your CRD-creation Yaml against your cluster, then doing a kubectl apply --dry-run -f <your-file-that-uses-a-CRD> will appear to work. Even though doing a kubectl apply -f <your-file-that-uses-a-CRD> would fail.

ghost avatar Jul 12 '18 21:07 ghost

In the short term, while this isn't implemented currently, could we exit with a specific exit code if the only errors are schema misses? This would enable people to "ignore" those errors in CI situations

jaredallard avatar Sep 01 '18 21:09 jaredallard

Had a quick look, wonder if an approach like:

  1. Add additional Cobra flag --skip-crd-schema-miss or similar
  2. Add another condition here: https://github.com/garethr/kubeval/blob/master/kubeval/kubeval.go#L159
  3. Add suitable test-crd.yaml
  4. Add tests.

If above a suitable approach (or per other suggestions/required changes) I'm happy to submit PR (or someone else can).

karlskewes avatar Mar 20 '19 08:03 karlskewes

for now my workaround has been find . -name '*.yaml' | grep -v crd | xargs kubeval

caarlos0 avatar Apr 01 '19 20:04 caarlos0

@garethr can you post some ideas how to add CRD validation ? Maybe it would be possible that someone else could work on this ?

grzesuav avatar Apr 12 '19 06:04 grzesuav

For the short term, I have a fork that sorta, kinda implements a bad fix to this: https://github.com/jaredallard/kubeval

Some might find it useful in the short term. I don't think I will have the bandwith to do this properly anytime soon though.

jaredallard avatar Apr 12 '19 23:04 jaredallard

+1 also looking at add kubeval to our CI and CRDs are the currently blocking step.

stefansedich avatar Apr 17 '19 04:04 stefansedich

Same for us. We decided to introduce additional CRD in manifests and this one is blocking.

trnl avatar May 05 '19 16:05 trnl

i have introduced this pr: https://github.com/instrumenta/kubeval/pull/127 which implements what @kskewes suggested in his comment

emirozer avatar May 09 '19 13:05 emirozer

Same thing here while piping helm template straight to kubeval. A note though: https://kubernetesjsonschema.dev/v1.11.0-standalone/customresourcedefinition-apiextensions-v1beta1.json leads to a 404, which according to the source could be normal Yet if we remove -standalone, we get the JSON. I'm not sure to understand what the standalone part is meant for...

Hiruma31 avatar May 16 '19 22:05 Hiruma31

This would be a really helpful feature for us as well. Although hiding CRD errors would be a good start, we would actually even like to be able to add to a list of crds for commonly used things like SealedSecrets. We also plan to move all our deployments to HelmReleases, which means that kubeval would no longer be able to validate any of our workloads.

@garethr - Would love to understand at least when PR #127 will be reviewed/merged.

dwight-biddle avatar May 30 '19 02:05 dwight-biddle

Agree with @dwightbiddle-ef. While the ability to skip validation of CustomResourceDefinitions is desirable, the ultimate goal should be to support their validation according to the schema.

Modern CRDs have the OpenAPI schema embedded in their manifest, so in theory it's a matter of collecting these schemas:

  • from the API server (this would require K8S API access, something generally undesirable for kubeval)
  • through HTTP calls to fetch published CRD manifests (could be solved by reading them from upstream github repos or some other curated repository like https://kubernetesjsonschema.dev/)

To give a concrete example, the Prometheus Operator has a prometheuses.monitoring.coreos.com/Prometheus CRD for which the canonical definition lives at https://github.com/coreos/prometheus-operator/blob/master/jsonnet/prometheus-operator/prometheus-crd.libsonnet

If I can somehow pass this CRD manifest (in Jsonnet, JSON or YAML form) to kubeval at runtime, it should be able to understand the embedded openAPIV3Schema data it contains and validate any input manifests against it.

bgagnon avatar May 30 '19 18:05 bgagnon

We have actually implemented a way to skip CRDs for now by using a simple naming convention and filtering out files with the name "secret" or "helm" in the filename, since that is the bulk of our CRD usage. For those that are curious, we're using the following command:

find . -name '*.yaml' ! -regex '.*[Ss]ecret.*' ! -regex '.*[Hh]elm.*' -print0 | xargs -0 -n1 kubeval

Just want to reiterate that the more valuable feature to spend time investigating/implementing is the ability to reference the open api schemas for CRDs at runtime as @bgagnon is saying above.

dwight-biddle avatar May 30 '19 21:05 dwight-biddle

I have a working prototype for a potential solution to this approach. Here's the general idea:

  • use git submodules to collect upstream definitions
  • use js-yaml to convert from YAML to JSON (including multi-document YAML)
  • keep only the CustomResourceDefinitions objects from these projects
  • using Jsonnet, extract the openAPIV3 schemas from those CRDs and apply the same transformations that the instrumenta/kubernetes-json-schema Python tool would do
  • using jsonnet -m, output files with the naming convention that kubeval expects
  • store the combined schemas (Kubernetes + third parties) in a single directory
  • serve that directory over HTTP
  • invoke kubeval with --schema-location set to that base URL

So far I have collected schemas for:

  • Kubernetes
  • Prometheus Operator
  • Heptio Contour

At this point I am wondering if I should simply move to another JSON Schema command line validator such as ajv-cli which might be easier to work with. But for now, I'll keep toying around with kubeval.

Some lessons learned:

  • Jsonnet is the best way to do JSON data transformations
  • upstream projects don't publish their CRDs in any standard way; some have Jsonnet, single-document YAML, multi-document YAML, Helm templates, JSON,etc.
  • it's best to find and use the "source of truth" for the CRDs in the upstream repos in their original form, as opposed to derived versions that may get out of sync over time
  • technically, CRDs are generated by Go code inside the operators/controllers, so we have to trust that the Git repositories contains that output -- some operators might only produce their CRD during registration (ie. at runtime)
  • the relationship between OpenAPI and JSON schema is poorly documented
  • the "strict mode" is unnecessarily complicated to implement

Any thoughts on that general idea?

bgagnon avatar May 31 '19 13:05 bgagnon

The schema generation bug that @garethr mentioned is likely due to the circular reference contained in the Kubernetes OpenAPI/Swagger schemas.

It is not possible to "resolve" (de-reference and inline) all $ref references because of that:

$ swagger-cli bundle -r swagger.json
Circular $ref pointer found at swagger.json#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps/properties

To fix this, the "standalone" mode would need to make an exception for this circular reference and allow a top-level object to be referenced by $ref.

bgagnon avatar May 31 '19 15:05 bgagnon

0.11.0 now has the --skip-missing-schemas flag which at least allows for ignoring these resources.

garethr avatar Jul 13 '19 18:07 garethr

0.11.0 now has the --skip-missing-schemas flag which at least allows for ignoring these resources.

Notice, it's --ignore-missing-schemas

nvtkaszpir avatar Jul 15 '19 07:07 nvtkaszpir

@bgagnon could you elaborate how to extract OpenAPI from json ?

Or preferably describe your actions on Prometheus Operator CRD as an example.

grzesuav avatar Jul 15 '19 21:07 grzesuav

@garethr The fix in 0.11.0 adding the --ignore-missing-schemas is insufficient. This issue demonstrates the unwanted behavior.

This PR addresses the issue.

ian-howell avatar Jul 18 '19 18:07 ian-howell

Not having support for easily importing CRDs is a bummer. The ability to validate CRs related to foundational projects like Istio, Cert-Manager, and the Prometheus Operator would be great. I am considering implementing roughly the same flow that @bgagnon described but it sounds like a lot to maintain.

Just a thought: As a first step, how feasible would it be to support the OpenAPI spec directly to avoid the conversion step?

marshallford avatar Jun 12 '20 21:06 marshallford

I was looking into this for validating my manifests and resorted to create my own custom schemas here (using js-yaml/jsonnet). You can find HelmReleases, ClusterIssuers and system-update-controller schemas there.

ams0 avatar Jun 12 '20 22:06 ams0

@ams0 Does that actually validate anything other than that it's valid YAML? I'm running in to https://github.com/instrumenta/kubeval/issues/247 and which it does fail on a completely broken YAML file, it doesn't detect clear violations of the JSON schemas.

leosunmo avatar Aug 23 '20 21:08 leosunmo

@ams0 I was having issues with your JSON schemas, similar to what @leosunmo had experienced.

> cat helmrelease.yaml 
---
apiVersion: 'helm.fluxcd.io/v1'
kind: 'HelmRelease'
metadata:
  name: 'test'
  namespace: 'test'
spec: {}

> kubeval --additional-schema-locations https://raw.githubusercontent.com/ams0/kubernetes-json-schema/master helmrelease.yaml 
PASS - helmrelease.yaml contains a valid HelmRelease (test.test)

I forked your repository to https://github.com/joshuaspence/kubernetes-json-schema and added some additional processing of the JSON schemas and it seems to work as I would expect now.

> kubeval --additional-schema-locations https://raw.githubusercontent.com/joshuaspence/kubernetes-json-schema/master helmrelease.yaml  
WARN - helmrelease.yaml contains an invalid HelmRelease (test.test) - chart: chart is required

joshuaspence avatar Sep 01 '20 12:09 joshuaspence

Welp the documentation for kubeval at https://www.kubeval.com/ has not been updated to include --additional-schema-locations :( I wrote kubeconform ( https://github.com/yannh/kubeconform ) partly to solve this.

I've included a python script derived from our @garethr openapi2jsonschema > https://github.com/yannh/kubeconform/blob/master/cmd/openapi2jsonschema/main.py to generate the jsonschemas - I think it does a couple of things your rq magic ( https://github.com/joshuaspence/kubernetes-json-schema/blob/master/build.sh ) does not, such as support for the "strict" mode. Maybe that could generate better schemas for https://github.com/joshuaspence/kubernetes-json-schema/ ? I share the need of a repository with a large pool of JSON schemas for CRDs, so thanks a lot @joshuaspence !

In Kubeconform I also added support for "configurable" json schemas paths, since I don't think the kubernetes version needs to be part of the path for JSON schema registries for custom resources...

This ticket can probably be closed though.

yannh avatar Oct 18 '20 17:10 yannh

Thanks for the pointers @yannh. Your script didn't work on all of the CRDs I have but it made me find a bug in my own script, will try to get around to fixing it.

joshuaspence avatar Oct 18 '20 22:10 joshuaspence

any updates for this subject ?

ilyesAj avatar Feb 03 '21 17:02 ilyesAj

One of the features of doc.crds.dev is to output the underlying CRD yaml for crds from a given repo. e.x.: https://doc.crds.dev/raw/github.com/crossplane/[email protected]

I wonder if wouldn't be possible to take those, download and massage them via kubevel, and then output them to a cache dir that can be using by kubevela

RichiCoder1 avatar Apr 02 '21 01:04 RichiCoder1

FWIW we've added some to this additional repository:

kubeval --additional-schema-locations https://jenkins-x.github.io/jenkins-x-schemas

jstrachan avatar May 12 '21 08:05 jstrachan

--additional-schema-locations is helpful, but not ideal. For example, I might want to validate against K8S schema v1.17, and Istio schema v1.8. Suppose I have a private URL serving Istio schemas at <private-istio-json-schema-baseurl>/v1.8

If I try to supply --kubernetes-version v1.17 --additional-schema-location <private-istio-json-schema-baseurl>, kubeval will try to download the Istio schemas from <private-istio-json-schema-baseurl>/v1.17, which isn't what I want.

I can currently work around this by setting --kubernetes-version master or by storing my Istio schemas in a v1.17 path.

I think it might be nice to be able to specify something like --versioned-crd-schema-locations and have kubeval download schemas from the supplied URL without appending the --kubernetes-version, or perhaps --exact-crd-schema-locations without appending either --kubernetes-version or --strict to the path.

maxenglander avatar Jun 29 '21 23:06 maxenglander