package yaml

import "k8s.io/apimachinery/pkg/runtime/serializer/yaml"

Index

Variables

var DefaultMetaFactory = SimpleMetaFactory{}

DefaultMetaFactory is a default factory for versioning objects in JSON or YAML. The object in memory and in the default serialization will use the "kind" and "apiVersion" fields.

Functions

func NewDecodingSerializer

func NewDecodingSerializer(jsonSerializer runtime.Serializer) runtime.Serializer

NewDecodingSerializer adds YAML decoding support to a serializer that supports JSON.

Types

type SimpleMetaFactory

type SimpleMetaFactory struct{}

SimpleMetaFactory provides default methods for retrieving the type and version of objects that are identified with an "apiVersion" and "kind" fields in their JSON serialization. It may be parameterized with the names of the fields in memory, or an optional list of base structs to search for those fields in memory.

func (SimpleMetaFactory) Interpret

func (SimpleMetaFactory) Interpret(data []byte) (*schema.GroupVersionKind, error)

Interpret will return the APIVersion and Kind of the JSON wire-format encoding of an object, or an error.

Source Files

meta.go yaml.go

Version
v0.27.6
Published
Jul 16, 2023
Platform
js/wasm
Imports
5 packages
Last checked
7 hours ago

Tools for package owners.