Package io.quarkiverse.helm.deployment
Interface ValuesSchemaPropertyConfig
public interface ValuesSchemaPropertyConfig
-
Method Summary
Modifier and TypeMethodDescriptionDescription of the property.maximum()Maximum value allowed for this property.minimum()Minimum value allowed for this property.name()Name of the property to add or update.pattern()Pattern to validate the value of this property.booleanrequired()If true, then this property is mandatory.type()Type of the property.
-
Method Details
-
name
Name of the property to add or update. Example: `app.replicas`. -
description
Description of the property. -
type
Type of the property. -
minimum
Minimum value allowed for this property. -
maximum
Maximum value allowed for this property. -
pattern
Pattern to validate the value of this property. -
required
@WithDefault("false") boolean required()If true, then this property is mandatory.
-