validation

package
v1.4.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 4, 2024 License: Apache-2.0 Imports: 15 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ApplyDefaults

func ApplyDefaults(obj interface{}, s *spec.Schema) bool

ApplyDefaults traverses an object and apply default values from OpenAPI schema. It returns true if obj is changed.

See https://github.com/kubernetes/kubernetes/blob/cea1d4e20b4a7886d8ff65f34c6d4f95efcb4742/staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/algorithm.go

Note: check only Properties for object type and List validation for array type.

func LoadSchemaFromBytes

func LoadSchemaFromBytes(openApiContent []byte) (*spec.Schema, error)

LoadSchemaFromBytes returns spec.Schema object loaded from YAML bytes.

func PrepareSchemas

func PrepareSchemas(configBytes, valuesBytes []byte) (schemas map[SchemaType]*spec.Schema, err error)

PrepareSchemas loads schemas for config values, values and helm values.

func YAMLBytesToJSONDoc added in v1.1.0

func YAMLBytesToJSONDoc(data []byte) (json.RawMessage, error)

YAMLBytesToJSONDoc is a replacement of swag.YAMLData and YAMLDoc to Unmarshal into interface{}. swag.BytesToYAML uses yaml.MapSlice to unmarshal YAML. This type doesn't support map merge of YAML anchors.

func YAMLDocLoader added in v1.1.0

func YAMLDocLoader(path string) (json.RawMessage, error)

YAMLDocLoader loads a yaml document from either http or a file and converts it to json.

Types

type SchemaStorage

type SchemaStorage struct {
	Schemas map[SchemaType]*spec.Schema
}

func NewSchemaStorage

func NewSchemaStorage(configBytes, valuesBytes []byte) (*SchemaStorage, error)

func (*SchemaStorage) GlobalSchemasDescription added in v1.0.6

func (st *SchemaStorage) GlobalSchemasDescription() string

GlobalSchemasDescription describes which global schemas are present in storage.

func (*SchemaStorage) ModuleSchemasDescription added in v1.0.6

func (st *SchemaStorage) ModuleSchemasDescription() string

ModuleSchemasDescription describes which schemas are present in storage for the module.

func (*SchemaStorage) Validate added in v1.3.13

func (st *SchemaStorage) Validate(valuesType SchemaType, moduleName string, values utils.Values) error

func (*SchemaStorage) ValidateConfigValues added in v1.3.13

func (st *SchemaStorage) ValidateConfigValues(moduleName string, values utils.Values) error

func (*SchemaStorage) ValidateModuleHelmValues added in v1.3.13

func (st *SchemaStorage) ValidateModuleHelmValues(moduleName string, values utils.Values) error

func (*SchemaStorage) ValidateValues added in v1.3.13

func (st *SchemaStorage) ValidateValues(moduleName string, values utils.Values) error

type SchemaType

type SchemaType string
const (
	GlobalSchema       SchemaType = "global"
	ModuleSchema       SchemaType = "module"
	ConfigValuesSchema SchemaType = "config"
	ValuesSchema       SchemaType = "values"
	HelmValuesSchema   SchemaType = "helm"
)

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL