Documentation ¶
Overview ¶
Package unstructured provides conversion from runtime objects to map[string]interface{} representation.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
DefaultConverter = NewConverter(parseBool(os.Getenv("KUBE_PATCH_CONVERSION_DETECTOR")))
)
Functions ¶
This section is empty.
Types ¶
type Converter ¶
type Converter interface { ToUnstructured(obj runtime.Object, u *map[string]interface{}) error FromUnstructured(u map[string]interface{}, obj runtime.Object) error }
Converter is an interface for converting between runtime.Object and map[string]interface representation.
func NewConverter ¶
Click to show internal directories.
Click to hide internal directories.