Versions in this module Expand all Collapse all v0 v0.5.0 Jul 8, 2026 Changes in this version + type BytesSource struct + Data []byte + func NewBytesSource(data []byte) *BytesSource + func (b *BytesSource) Load() ([]Resource, error) + type FileSource struct + Path string + func NewFileSource(path string) *FileSource + func (f *FileSource) Load() ([]Resource, error) + type HelmSource struct + ChartPath string + ReleaseName string + ValuesFiles []string + func NewHelmSource(chartPath, releaseName string, valuesFiles []string) *HelmSource + func (h *HelmSource) Load() ([]Resource, error) + type KustomizeSource struct + Path string + func NewKustomizeSource(path string) *KustomizeSource + func (k *KustomizeSource) Load() ([]Resource, error) + type Resource struct + APIVersion string + Kind string + Name string + Namespace string + Object *unstructured.Unstructured + type Source interface + Load func() ([]Resource, error)