Documentation ¶
Overview ¶
Package validate provides Zarf package validation functions.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // IsLowercaseNumberHyphenNoStartHyphen is a regex for lowercase, numbers and hyphens that cannot start with a hyphen. // https://regex101.com/r/FLdG9G/2 IsLowercaseNumberHyphenNoStartHyphen = regexp.MustCompile(`^[a-z0-9][a-z0-9\-]*$`).MatchString // IsUppercaseNumberUnderscore is a regex for uppercase, numbers and underscores. // https://regex101.com/r/tfsEuZ/1 IsUppercaseNumberUnderscore = regexp.MustCompile(`^[A-Z0-9_]+$`).MatchString )
Functions ¶
func ImportDefinition ¶ added in v0.31.0
func ImportDefinition(component *types.ZarfComponent) error
ImportDefinition validates the component trying to be imported.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.