Files
velero/internal/resourcemodifiers/resource_modifiers_validator.go
Anshul Ahuja f5b6cf5b93 minor fixes
Signed-off-by: Anshul Ahuja <anshulahuja@microsoft.com>
2023-07-11 10:00:08 +05:30

58 lines
1.3 KiB
Go

package resourcemodifiers
import (
"strings"
"fmt"
"github.com/pkg/errors"
)
func (r *ResourceModifierRule) Validate() error {
if err := r.Conditions.Validate(); err != nil {
return errors.WithStack(err)
}
for _, patch := range r.Patches {
if err := patch.Validate(); err != nil {
return errors.WithStack(err)
}
}
return nil
}
func (p *ResourceModifiers) Validate() error {
if !strings.EqualFold(p.Version, ResourceModifierSupportedVersionV1) {
return fmt.Errorf("unsupported resource modifier version %s", p.Version)
}
if len(p.ResourceModifierRules) == 0 {
return fmt.Errorf("resource modifier rules cannot be empty")
}
for _, rule := range p.ResourceModifierRules {
if err := rule.Validate(); err != nil {
return errors.WithStack(err)
}
}
return nil
}
func (p *JSONPatch) Validate() error {
if p.Operation == "" {
return fmt.Errorf("operation cannot be empty")
}
if operation := strings.ToLower(p.Operation); operation != "add" && operation != "remove" && operation != "replace" && operation != "test" && operation != "move" && operation != "copy" {
return fmt.Errorf("unsupported operation %s", p.Operation)
}
if p.Path == "" {
return fmt.Errorf("path cannot be empty")
}
return nil
}
func (c *Conditions) Validate() error {
if c.GroupKind == "" {
return fmt.Errorf("groupkind cannot be empty")
}
return nil
}