You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Content of examples on master should validate against the JSON schema on master
Diagnostics
Issues with
string-or-int (eg. for port numbers) - can be fixed by setting schema type to "type": ["string", "int"]
string-or-number (eg. workflow parameters defaults & values) - can be fixed by setting schema type to "type": ["string", "number"] - are they parsed or should these really be limited to strings?
int64 and int32 as "format" for "type":"integer" not valid JSON schema - remove format keys
examples/memoize-simple.yaml doesn't validate, io.k8s.api.core.v1.ConfigMapKeySelector is missing property "key"
a couple of examples have naked keys and need data structures [] or {} to be specified
Incoming PR has a diff showing changes to fix - not sure whether the changes need to be made directly in the schema or in some code that generates the schema
Message from the maintainers:
Impacted by this bug? Give it a 👍. We prioritise the issues with the most 👍.
The text was updated successfully, but these errors were encountered:
Summary
Content of
examples
on master should validate against the JSON schema on masterDiagnostics
Issues with
"type": ["string", "int"]
"type": ["string", "number"]
- are they parsed or should these really be limited to strings?int64
andint32
as "format" for"type":"integer"
not valid JSON schema - remove format keysexamples/memoize-simple.yaml
doesn't validate, io.k8s.api.core.v1.ConfigMapKeySelector is missing property "key"[]
or{}
to be specifiedIncoming PR has a diff showing changes to fix - not sure whether the changes need to be made directly in the schema or in some code that generates the schema
Message from the maintainers:
Impacted by this bug? Give it a 👍. We prioritise the issues with the most 👍.
The text was updated successfully, but these errors were encountered: