Helm Schema Validation
Cyclops renders its UI based on the Helm chart JSON schema. JSON schema provides some fields to help with validations. Those fields are listed below, as well as whether or not Cyclops currently supports those.
Strings
JSON schema reference
Name | Description | Supported |
---|
minLength | minimum length of the field value | ✅ |
maxLength | minimum length of the field value | ✅ |
pattern | restrict a string to a particular regular expression | ✅ |
format | allows for basic semantic identification of certain kinds of string values that are commonly used | ❌ |
Numeric
JSON schema reference
Name | Description | Supported |
---|
minimum | minimum field value | ✅ |
maximum | maximum field value | ✅ |
exclusiveMinimum | exclusive minimum field value | ✅ |
exclusiveMaximum | exclusive minimum field value | ✅ |
multipleOf | field value has to be a multiple of | ✅ |