kubernetes-json-schema icon indicating copy to clipboard operation
kubernetes-json-schema copied to clipboard

Schemas for every version of every object in every version of Kubernetes

Results 29 kubernetes-json-schema issues
Sort by recently updated
recently updated
newest added

Adding schemas for k8s v1.19.3 Used `build.sh` script to generate schemas ```bash kubeval --strict --kubernetes-version 1.19.3 --schema-location https://raw.githubusercontent.com/dmourao/kubernetes-json-schema/master ingress.yaml PASS - ingress.yaml contains a valid Ingress (webrtc-service) ```

We hit an issue with https://github.com/instrumenta/kubeval which is due to missing kubernetes 1.19 schemas. I wonder if there could be a way to automate the generation of the JSON schemas....

Could a maintainer of this project provide feedback on whether this is dead or not? It's fine when you don't have the time maintaining this, but it's another thing letting...

When I use kubeval with sealed-secrets I see error like below: ```ERR - storage/aws-secret.yaml: Failed initializing schema https://kubernetesjsonschema.dev/master-standalone/sealedsecret-bitnami-v1alpha1.json: Could not read schema from HTTP, response status is 404 Not Found```...

All objects should include `"additionalProperties": false,` to properly validate, e.g. the following should fail but doesn't with the current schemas: ``` resources: limits: foobar: 123 cpu: 100m memory: 128Mi requests:...

Some objects with fields marked as required can be null, _if I understand this correctly_ this should not be the case and can result in JSONs missing required fields being...

Just found kubeval and its an amazing tool. Would it make sense to add CRD's to these schemata so that kubeval will work when defining those resources as well, or...

Using kubeval to validate example deployments from https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-quickstart.html I get : ``` ERR - elasticsearch/cluster.yaml: Failed initializing schema https://kubernetesjsonschema.dev/master-standalone/elasticsearch-elasticsearch-v1.json: Could not read schema from HTTP, response status is 404 Not...

I'm missing the schemas for the latest patch releases: - v1.15.12 - v1.16.13 - v1.17.9 - v1.18.6 Are there plans to add them?