helm

package
v3.0.0 Latest Latest
Warning

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

Go to latest
Published: Jun 1, 2026 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AuthSecret

type AuthSecret struct {
	Name string `yaml:"name,omitempty"`
}

type CRD

type CRD struct {
	APIVersion string   `yaml:"apiVersion"`
	Kind       string   `yaml:"kind"`
	Metadata   Metadata `yaml:"metadata"`
	Spec       Spec     `yaml:"spec"`
}

func NewCRD

func NewCRD(namespace, chart, version, valuesContent string, repository string, auth, skipTLSVerify bool) *CRD

type Metadata

type Metadata struct {
	Name      string `yaml:"name"`
	Namespace string `yaml:"namespace,omitempty"`
}

type Secret

type Secret struct {
	APIVersion string         `yaml:"apiVersion"`
	Kind       string         `yaml:"kind"`
	Metadata   SecretMetadata `yaml:"metadata"`
	Type       string         `yaml:"type"`
	Data       SecretData     `yaml:"data"`
}

type SecretData

type SecretData struct {
	DockerConfigJSON *string `yaml:".dockerconfigjson,omitempty"`
	Username         *string `yaml:"username,omitempty"`
	Password         *string `yaml:"password,omitempty"`
}

type SecretMetadata

type SecretMetadata struct {
	Namespace string `yaml:"namespace"`
	Name      string `yaml:"name"`
}

type Spec

type Spec struct {
	Chart                 string      `yaml:"chart"`
	Version               string      `yaml:"version"`
	Repo                  string      `yaml:"repo,omitempty"`
	ValuesContent         string      `yaml:"valuesContent,omitempty"`
	TargetNamespace       string      `yaml:"targetNamespace,omitempty"`
	CreateNamespace       bool        `yaml:"createNamespace,omitempty"`
	BackOffLimit          int         `yaml:"backOffLimit"`
	RegistryAuthSecret    *AuthSecret `yaml:"dockerRegistrySecret,omitempty"`
	RepositoryAuthSecret  *AuthSecret `yaml:"authSecret,omitempty"`
	InsecureSkipTLSVerify bool        `yaml:"insecureSkipTLSVerify,omitempty"`
}

type ValueSource

type ValueSource struct {
	Inline map[string]any
	File   string
}

type ValuesResolver

type ValuesResolver struct {
	ValuesDir string
	FS        vfs.FS
}

func (*ValuesResolver) Resolve

func (r *ValuesResolver) Resolve(source *ValueSource) ([]byte, error)

Jump to

Keyboard shortcuts

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