Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ValuesValidate (0.11 sec)

  1. operator/pkg/validate/validate_values.go

    		return util.Errors{err}
    	}
    	return ValuesValidate(DefaultValuesValidations, root.(*structpb.Struct).AsMap(), nil)
    }
    
    // ValuesValidate validates the values of the tree using the supplied Func
    func ValuesValidate(validations map[string]ValidatorFunc, node any, path util.Path) (errs util.Errors) {
    	pstr := path.String()
    	scope.Debugf("ValuesValidate %s", pstr)
    	vf := validations[pstr]
    	if vf != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top