mirror of https://github.com/helm/helm
Merge pull request #30754 from mattfarina/simplify-jsonschema
Simplify the JSON Schema checkingpull/30760/head
commit
e0fde2bd90
@ -1,4 +1,4 @@
|
|||||||
Error: INSTALLATION FAILED: values don't meet the specifications of the schema(s) in the following chart(s):
|
Error: INSTALLATION FAILED: values don't meet the specifications of the schema(s) in the following chart(s):
|
||||||
empty:
|
empty:
|
||||||
- age: Must be greater than or equal to 0
|
- at '/age': minimum: got -5, want 0
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Error: INSTALLATION FAILED: values don't meet the specifications of the schema(s) in the following chart(s):
|
Error: INSTALLATION FAILED: values don't meet the specifications of the schema(s) in the following chart(s):
|
||||||
empty:
|
empty:
|
||||||
- (root): employmentInfo is required
|
- at '': missing property 'employmentInfo'
|
||||||
- age: Must be greater than or equal to 0
|
- at '/age': minimum: got -5, want 0
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Error: INSTALLATION FAILED: values don't meet the specifications of the schema(s) in the following chart(s):
|
Error: INSTALLATION FAILED: values don't meet the specifications of the schema(s) in the following chart(s):
|
||||||
subchart-with-schema:
|
subchart-with-schema:
|
||||||
- age: Must be greater than or equal to 0
|
- at '/age': minimum: got -25, want 0
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Error: INSTALLATION FAILED: values don't meet the specifications of the schema(s) in the following chart(s):
|
Error: INSTALLATION FAILED: values don't meet the specifications of the schema(s) in the following chart(s):
|
||||||
chart-without-schema:
|
chart-without-schema:
|
||||||
- (root): lastname is required
|
- at '': missing property 'lastname'
|
||||||
subchart-with-schema:
|
subchart-with-schema:
|
||||||
- (root): age is required
|
- at '': missing property 'age'
|
||||||
|
|
||||||
|
Loading…
Reference in new issue