Documentation
¶
Overview ¶
Package stack provides the core domain model for defining and generating Kubernetes cluster configurations with GitOps tooling (Flux CD or ArgoCD).
Overview ¶
The stack package models a Kubernetes cluster as a hierarchical tree of nodes, where each node can contain bundles of applications. This structure maps directly to the directory layouts expected by GitOps tools, enabling declarative generation of the complete repository structure needed for Flux Kustomizations or ArgoCD Applications.
Domain Model ¶
The core types form a hierarchical structure:
Cluster └── Node (tree structure) ├── Bundle │ └── Applications └── Children (nested Nodes) - [Cluster]: Top-level configuration including GitOps settings - [Node]: Hierarchical structure for organizing deployment units - [Bundle]: Collection of applications deployed together - [Application]: Individual Kubernetes workload or component
Fluent Builder API ¶
The package provides a fluent builder API for constructing cluster configurations in a type-safe, readable manner:
cluster, err := stack.NewClusterBuilder("production").
WithGitOps(&stack.GitOpsConfig{Type: "flux"}).
WithNode("infrastructure").
WithBundle("monitoring").
WithApplication("prometheus", prometheusConfig).
End().
End().
Build()
The fluent API uses a copy-on-write pattern where each method returns a new builder instance, allowing safe branching and concurrent construction. Build() returns (*Cluster, error) to surface any validation errors.
Workflow Integration ¶
The Workflow interface abstracts the generation of GitOps-specific resources. Implementations exist for both Flux CD and ArgoCD:
- github.com/go-kure/kure/pkg/stack/fluxcd.FluxWorkflow: Generates Flux Kustomizations, GitRepositories, and related resources
- github.com/go-kure/kure/pkg/stack/argocd.ArgoCDWorkflow: Generates ArgoCD Applications and AppProjects
Use the workflow to generate all manifests for a cluster:
workflow := fluxcd.NewFluxWorkflow() manifests, err := workflow.Generate(cluster)
Layout Generation ¶
The github.com/go-kure/kure/pkg/stack/layout subpackage handles writing the generated manifests to disk following the conventions expected by GitOps tools.
Package References ¶
Nodes can specify a [PackageRef] to indicate that a subtree should be packaged as a separate OCI artifact or kurel package. When undefined, the PackageRef is inherited from the parent node.
Example ¶
Complete example creating a cluster with infrastructure and applications:
// Define the cluster structure
cluster, err := stack.NewClusterBuilder("prod-cluster").
WithGitOps(&stack.GitOpsConfig{
Type: "flux",
Bootstrap: &stack.BootstrapConfig{
Enabled: true,
FluxMode: "flux-operator",
},
}).
WithNode("infrastructure").
WithBundle("cert-manager").
WithApplication("cert-manager", certManagerConfig).
End().
WithChild("applications").
WithBundle("web-app").
WithApplication("frontend", frontendConfig).
WithApplication("backend", backendConfig).
End().
End().
End().
Build()
// Generate Flux manifests
workflow := fluxcd.NewFluxWorkflow()
manifests, _ := workflow.Generate(cluster)
// Write to disk using layout package
layout.WriteCluster(cluster, "./clusters/prod", manifests)
Dual Access Pattern (Exported Fields and Getter/Setter Methods) ¶
Several types in this package, notably Cluster and Node, expose their data both as exported struct fields and through getter/setter methods. The methods are intentionally thin wrappers without additional validation, meaning both access paths are functionally equivalent.
This design serves two audiences:
- Internal and test code benefits from direct field access, which is concise and idiomatic in Go.
- External library consumers (e.g. Crane) can use getter/setter methods to decouple from the concrete field layout, making it easier to introduce validation or indirection in a future version without breaking callers.
When writing new code inside the kure repository, prefer direct field access. When consuming the stack package as a library, prefer the getter/setter methods. See the Cluster type documentation for details.
Index ¶
- Constants
- func HasApplicationConfigGVK(apiVersion, kind string) bool
- func ListApplicationConfigGVKs() []gvk.GVK
- func RegisterApplicationConfig(gvk gvk.GVK, factory func() ApplicationConfig)
- func RegisterArgoWorkflow(factory func() Workflow)
- func RegisterFluxWorkflow(factory func() Workflow)
- func ValidateCluster(c *Cluster) error
- type Application
- type ApplicationConfig
- type ApplicationMetadata
- type ApplicationWrapper
- type ApplicationWrappers
- type BootstrapConfig
- type Bundle
- func (a *Bundle) Generate() ([]*client.Object, error)
- func (b *Bundle) GetParent() *Bundle
- func (b *Bundle) GetParentPath() string
- func (b *Bundle) GetPath() string
- func (b *Bundle) InitializePathMap(allBundles []*Bundle)
- func (a *Bundle) InitializeUmbrella()
- func (a *Bundle) IsUmbrella() bool
- func (b *Bundle) SetParent(parent *Bundle)
- func (a *Bundle) Validate() error
- type BundleBuilder
- type Cluster
- type ClusterBuilder
- type GitOpsConfig
- type HealthCheck
- type LayoutRulesProvider
- type ManifestLayoutResult
- type Node
- func (n *Node) GetBundle() *Bundle
- func (n *Node) GetChildren() []*Node
- func (n *Node) GetName() string
- func (n *Node) GetPackageRef() *schema.GroupVersionKind
- func (n *Node) GetParent() *Node
- func (n *Node) GetParentPath() string
- func (n *Node) GetPath() string
- func (n *Node) InitializePathMap()
- func (n *Node) SetBundle(bundle *Bundle)
- func (n *Node) SetChildren(children []*Node)
- func (n *Node) SetName(name string)
- func (n *Node) SetPackageRef(ref *schema.GroupVersionKind)
- func (n *Node) SetParent(parent *Node)
- func (n *Node) SetParentPath(path string)
- type NodeBuilder
- type Patch
- type PatchSelector
- type PostBuild
- type SourceRef
- type SubstituteRef
- type Validator
- type Workflow
Constants ¶
const ( // AnnotationFluxPruneKey is the Flux kustomize-controller annotation key // used to control pruning behavior on individual resources. AnnotationFluxPruneKey = "kustomize.toolkit.fluxcd.io/prune" // AnnotationFluxPruneDisabled is the value that prevents a resource from // being pruned during Flux garbage collection. AnnotationFluxPruneDisabled = "disabled" )
Variables ¶
This section is empty.
Functions ¶
func HasApplicationConfigGVK ¶
HasApplicationConfigGVK checks if an ApplicationConfig is registered for the given apiVersion and kind
func ListApplicationConfigGVKs ¶
ListApplicationConfigGVKs returns all registered ApplicationConfig GVKs
func RegisterApplicationConfig ¶
func RegisterApplicationConfig(gvk gvk.GVK, factory func() ApplicationConfig)
RegisterApplicationConfig registers an ApplicationConfig type with the stack registry
func RegisterArgoWorkflow ¶
func RegisterArgoWorkflow(factory func() Workflow)
RegisterArgoWorkflow registers the ArgoCD workflow factory. This is called by the argocd package during init.
func RegisterFluxWorkflow ¶
func RegisterFluxWorkflow(factory func() Workflow)
RegisterFluxWorkflow registers the Flux workflow factory. This is called by the fluxcd package during init.
func ValidateCluster ¶
ValidateCluster performs cluster-level structural validation that cannot be expressed on a single Bundle alone. It is the single validation entry point shared by the resource generator, layout walker, layout integrator, and the v1alpha1 converter round-trip.
It enforces:
- Every Node bundle passes Bundle.Validate (which recursively validates umbrella Children subtrees including cycle detection).
- Disjointness: a bundle pointer appearing inside any umbrella Children subtree must NOT also be attached as the Bundle of any stack.Node.
- No umbrella child pointer is shared by two distinct umbrella parents.
- Multi-package rejection: if any Node has a PackageRef set and any bundle in the cluster has umbrella Children, the cluster is rejected. Cross-package umbrella semantics are follow-up work.
ValidateCluster is safe to call with a nil cluster or a cluster with no root node (it returns nil in both cases).
Types ¶
type Application ¶
type Application struct {
Name string
Namespace string
Config ApplicationConfig
}
Application represents a deployable application with a configuration.
func NewApplication ¶
func NewApplication(name, namespace string, cfg ApplicationConfig) *Application
NewApplication constructs an Application with the provided parameters.
func (*Application) Generate ¶
func (a *Application) Generate() ([]*client.Object, error)
Generate returns the resources for this application. If the Config implements the Validator interface, Validate() is called before Generate(). A validation error stops generation immediately.
func (*Application) SetConfig ¶
func (a *Application) SetConfig(cfg ApplicationConfig)
SetConfig replaces the application configuration.
func (*Application) SetName ¶
func (a *Application) SetName(name string)
SetName updates the application name.
func (*Application) SetNamespace ¶
func (a *Application) SetNamespace(ns string)
SetNamespace updates the target namespace.
type ApplicationConfig ¶
type ApplicationConfig interface {
Generate(*Application) ([]*client.Object, error)
}
ApplicationConfig describes the behaviour of specific application types.
func CreateApplicationConfig ¶
func CreateApplicationConfig(apiVersion, kind string) (ApplicationConfig, error)
CreateApplicationConfig creates a new ApplicationConfig instance for the given apiVersion and kind
type ApplicationMetadata ¶
type ApplicationMetadata struct {
Name string `yaml:"name" json:"name"`
Namespace string `yaml:"namespace,omitempty" json:"namespace,omitempty"`
Labels map[string]string `yaml:"labels,omitempty" json:"labels,omitempty"`
}
ApplicationMetadata contains common metadata fields
type ApplicationWrapper ¶
type ApplicationWrapper struct {
APIVersion string `yaml:"apiVersion" json:"apiVersion"`
Kind string `yaml:"kind" json:"kind"`
Metadata ApplicationMetadata `yaml:"metadata" json:"metadata"`
Spec ApplicationConfig `yaml:"-" json:"-"`
}
ApplicationWrapper provides type detection and unmarshaling for ApplicationConfig
func (*ApplicationWrapper) MarshalYAML ¶
func (w *ApplicationWrapper) MarshalYAML() (any, error)
MarshalYAML implements custom YAML marshaling
func (*ApplicationWrapper) ToApplication ¶
func (w *ApplicationWrapper) ToApplication() *Application
ToApplication converts the wrapper to a stack.Application
func (*ApplicationWrapper) UnmarshalYAML ¶
func (w *ApplicationWrapper) UnmarshalYAML(node *yaml.Node) error
UnmarshalYAML implements custom YAML unmarshaling with type detection
type ApplicationWrappers ¶
type ApplicationWrappers []ApplicationWrapper
ApplicationWrappers is a slice of ApplicationWrapper for unmarshaling multiple configs
func (ApplicationWrappers) ToApplications ¶
func (ws ApplicationWrappers) ToApplications() []*Application
ToApplications converts all wrappers to Applications
type BootstrapConfig ¶
type BootstrapConfig struct {
// Common fields
Enabled bool `yaml:"enabled"`
// Flux-specific
FluxMode string `yaml:"fluxMode,omitempty"` // "flux-operator" (default) or "gotk" (legacy)
FluxVersion string `yaml:"fluxVersion,omitempty"`
Components []string `yaml:"components,omitempty"`
Registry string `yaml:"registry,omitempty"`
ImagePullSecret string `yaml:"imagePullSecret,omitempty"`
// Source configuration
SourceKind string `yaml:"sourceKind,omitempty"` // "GitRepository" or "OCIRepository"
SourceURL string `yaml:"sourceURL,omitempty"` // OCI/Git repository URL
SourceRef string `yaml:"sourceRef,omitempty"` // Tag/branch/ref
// ArgoCD-specific (mock for now)
ArgoCDVersion string `yaml:"argoCDVersion,omitempty"`
ArgoCDNamespace string `yaml:"argoCDNamespace,omitempty"`
}
BootstrapConfig defines the bootstrap configuration for GitOps tools
type Bundle ¶
type Bundle struct {
// Name identifies the application set.
Name string
// ParentPath is the hierarchical path to the parent bundle (e.g., "cluster/infrastructure")
// Empty for root bundles. This avoids circular references while maintaining hierarchy.
ParentPath string
// DependsOn lists other bundles this bundle depends on
DependsOn []*Bundle
// Children holds bundles whose Flux Kustomization CRs are rendered into
// this bundle's tar path and whose readiness is aggregated into this
// bundle's HealthChecks. When non-empty, this bundle acts as an umbrella:
// it is Ready only when all Children are Ready. Children bundles must be
// standalone — they cannot simultaneously be the Bundle of a stack.Node.
// Setting Wait=false on a bundle with Children is a validation error.
Children []*Bundle
// Interval controls how often Flux reconciles the bundle.
Interval string
// SourceRef specifies the source for the bundle.
SourceRef *SourceRef
// Applications holds the Kubernetes objects that belong to the application.
Applications []*Application
// Labels are common labels that should be applied to each resource.
Labels map[string]string
// Annotations are common annotations propagated to all generated resources and
// the generated Kustomization resource. Application-specific annotations take precedence.
Annotations map[string]string
// Description provides a human-readable description of the bundle.
Description string
// Prune enables garbage collection of resources removed from the bundle.
Prune *bool
// Wait causes the Kustomization to wait for resources to become ready.
Wait *bool
// Timeout is the maximum duration to wait for resources to be ready (e.g. "5m").
Timeout string
// RetryInterval is the interval between retry attempts for failed reconciliations (e.g. "2m").
RetryInterval string
// Force causes Flux to re-apply resources even if there are no detected changes.
Force *bool
// Suspend disables reconciliation when true. Set to false to resume.
Suspend *bool
// HealthChecks lists resources whose health is monitored during reconciliation.
// When specified, the Kustomization waits for these resources to become ready.
HealthChecks []HealthCheck
// Patches lists strategic merge or JSON patches to apply to resources after
// kustomize build. Each patch targets resources matching its selector.
Patches []Patch
// PostBuild configures variable substitution performed after kustomize build.
PostBuild *PostBuild
// contains filtered or unexported fields
}
Bundle represents a unit of deployment, typically the resources that are reconciled by a single Flux Kustomization.
func NewBundle ¶
NewBundle constructs a Bundle with the given name, resources and labels. It returns an error if validation fails.
func (*Bundle) GetParentPath ¶
GetParentPath returns the hierarchical path to the parent bundle.
func (*Bundle) InitializePathMap ¶
InitializePathMap builds the runtime path lookup map for efficient hierarchy navigation. This should be called on the root bundle after the tree structure is complete.
func (*Bundle) InitializeUmbrella ¶
func (a *Bundle) InitializeUmbrella()
InitializeUmbrella walks the umbrella Children subtree and sets each child's runtime parent pointer (via SetParent) so that path-derivation code (e.g. bundlePath) can walk upward from any child. Idempotent and safe to call multiple times.
func (*Bundle) IsUmbrella ¶
IsUmbrella reports whether the bundle acts as an umbrella (has Children that contribute their Flux Kustomizations into this bundle's directory).
type BundleBuilder ¶
type BundleBuilder interface {
WithApplication(name string, appConfig ApplicationConfig) BundleBuilder
WithDependency(bundle *Bundle) BundleBuilder
WithSourceRef(sourceRef *SourceRef) BundleBuilder
End() NodeBuilder
Build() (*Cluster, error)
}
BundleBuilder provides fluent interface for building Bundle configurations.
type Cluster ¶
type Cluster struct {
Name string `yaml:"name"`
Node *Node `yaml:"node,omitempty"`
GitOps *GitOpsConfig `yaml:"gitops,omitempty"`
}
Cluster describes a cluster configuration. A cluster configuration is a set of configurations that are packaged in one or more package units.
Dual Access Pattern ¶
Cluster exposes its fields (Name, Node, GitOps) as exported struct fields and also provides getter/setter methods (GetName/SetName, GetNode/SetNode, GetGitOps/SetGitOps). The getters and setters are thin wrappers that do not add validation; both access paths read and write the same underlying fields.
This dual access pattern exists intentionally:
- Exported fields allow direct, concise access that is idiomatic in Go, particularly useful in tests, internal code, and YAML serialization/deserialization (struct tags operate on exported fields).
- Getter/setter methods provide an encapsulated API surface for library consumers (e.g. Crane) who may prefer method-based access or who want to program against a future interface without depending on concrete field layout.
Guidance for New Code ¶
Within the kure codebase (tests, internal packages, CLI commands), prefer direct field access for brevity:
c.Name = "prod" fmt.Println(c.Node)
When writing code that consumes the stack package as an external library, prefer the getter/setter methods so that any future validation or indirection can be introduced without breaking callers:
c.SetName("prod")
node := c.GetNode()
func NewCluster ¶
NewCluster creates a Cluster with the provided metadata.
func (*Cluster) GetGitOps ¶
func (c *Cluster) GetGitOps() *GitOpsConfig
func (*Cluster) SetGitOps ¶
func (c *Cluster) SetGitOps(g *GitOpsConfig)
type ClusterBuilder ¶
type ClusterBuilder interface {
WithNode(name string) NodeBuilder
WithGitOps(gitops *GitOpsConfig) ClusterBuilder
Build() (*Cluster, error)
}
ClusterBuilder provides fluent interface for building Cluster configurations.
func NewClusterBuilder ¶
func NewClusterBuilder(name string) ClusterBuilder
NewClusterBuilder creates a new fluent cluster builder.
type GitOpsConfig ¶
type GitOpsConfig struct {
Type string `yaml:"type"` // "flux" or "argocd"
Bootstrap *BootstrapConfig `yaml:"bootstrap,omitempty"`
}
GitOpsConfig defines the GitOps tool configuration for the cluster
type HealthCheck ¶
type HealthCheck struct {
// APIVersion of the resource (e.g. "apps/v1", "helm.toolkit.fluxcd.io/v2").
APIVersion string
// Kind of the resource (e.g. "Deployment", "HelmRelease").
Kind string
// Name of the resource.
Name string
// Namespace of the resource. When empty, defaults to the Kustomization namespace.
Namespace string
}
HealthCheck defines a resource to be monitored for health during reconciliation.
type LayoutRulesProvider ¶
type LayoutRulesProvider interface {
Validate() error
}
LayoutRulesProvider is the interface for layout configuration passed to CreateLayoutWithResources. The concrete implementation is layout.LayoutRules from pkg/stack/layout. Defined here to avoid an import cycle between pkg/stack and pkg/stack/layout.
type ManifestLayoutResult ¶
ManifestLayoutResult is the interface for layout results returned by CreateLayoutWithResources. The concrete implementation is *layout.ManifestLayout from pkg/stack/layout. Callers that need the full concrete type should type-assert: ml, ok := result.(*layout.ManifestLayout).
type Node ¶
type Node struct {
// Name identifies the application set.
Name string `yaml:"name"`
// ParentPath is the hierarchical path to the parent node (e.g., "cluster/infrastructure")
// Empty for root nodes. This avoids circular references while maintaining hierarchy.
ParentPath string `yaml:"parentPath,omitempty"`
// Children list child bundles
Children []*Node `yaml:"children,omitempty"`
// PackageRef identifies in which package the tree of resources get bundled together
// If undefined, the PackageRef of the parent is inherited
PackageRef *schema.GroupVersionKind `yaml:"packageref,omitempty"`
// Bundle holds the applications that get deployed on this level
Bundle *Bundle `yaml:"bundle,omitempty"`
// contains filtered or unexported fields
}
Node represents a hierarchic structure holding all deployment bundles each tree has a list of children, which can be a deployment, or a subtree It could match a kubernetes cluster's full configuration, or it could be just a part of that, when parts are e.g. packaged in different OCI artifacts Tree's with a common PackageRef are packaged together
func (*Node) GetChildren ¶
func (*Node) GetPackageRef ¶
func (n *Node) GetPackageRef() *schema.GroupVersionKind
func (*Node) GetParentPath ¶
func (*Node) InitializePathMap ¶
func (n *Node) InitializePathMap()
InitializePathMap builds the runtime path lookup map for efficient hierarchy navigation. This should be called on the root node after the tree structure is complete.
func (*Node) SetChildren ¶
func (*Node) SetPackageRef ¶
func (n *Node) SetPackageRef(ref *schema.GroupVersionKind)
func (*Node) SetParent ¶
SetParent sets the parent node and updates the ParentPath accordingly. This method maintains both the serializable path and runtime reference.
func (*Node) SetParentPath ¶
type NodeBuilder ¶
type NodeBuilder interface {
WithChild(name string) NodeBuilder
WithBundle(name string) BundleBuilder
WithPackageRef(ref *schema.GroupVersionKind) NodeBuilder
End() ClusterBuilder
Build() (*Cluster, error)
}
NodeBuilder provides fluent interface for building Node configurations.
type Patch ¶
type Patch struct {
// Patch is the patch content in strategic merge patch or JSON patch format.
Patch string
// Target selects which resources the patch applies to.
// When nil the patch applies to all resources.
Target *PatchSelector
}
Patch defines a strategic merge or JSON patch applied to resources after kustomize build.
type PatchSelector ¶
type PatchSelector struct {
// Group of the target resource (e.g. "apps").
Group string
// Version of the target resource (e.g. "v1").
Version string
// Kind of the target resource (e.g. "Deployment").
Kind string
// Name of the target resource.
Name string
// Namespace of the target resource.
Namespace string
// LabelSelector is a label selector expression.
LabelSelector string
// AnnotationSelector is an annotation selector expression.
AnnotationSelector string
}
PatchSelector selects Kubernetes resources by GVK and metadata filters.
type PostBuild ¶
type PostBuild struct {
// Substitute contains inline key-value substitution variables.
// Values are substituted for ${VAR} occurrences in manifests.
Substitute map[string]string
// SubstituteFrom lists ConfigMaps and Secrets whose data is merged into
// the substitution variables.
SubstituteFrom []SubstituteRef
}
PostBuild configures variable substitution performed after kustomize build.
type SourceRef ¶
type SourceRef struct {
Kind string
Name string
Namespace string
// URL is the repository URL (OCI or Git). When set, the resource generator
// creates the source CRD in addition to referencing it.
URL string
// Tag is the tag or semver reference for OCI sources.
Tag string
// Branch is the branch reference for Git sources.
Branch string
}
SourceRef defines a reference to a Flux source. When Kind, Name and Namespace are set, the Kustomization will reference an existing source. When URL is also set, the resource generator will create the source CRD.
type SubstituteRef ¶
type SubstituteRef struct {
// Kind is ConfigMap or Secret.
Kind string
// Name of the ConfigMap or Secret.
Name string
// Optional allows the reference to be absent without causing an error.
Optional bool
}
SubstituteRef defines a reference to a ConfigMap or Secret used as a source of PostBuild substitution variables.
type Validator ¶
type Validator interface {
Validate() error
}
Validator is an optional interface that ApplicationConfig implementations can implement to validate their configuration before generation. If an ApplicationConfig also implements Validator, Application.Generate() calls Validate() automatically before calling Generate().
type Workflow ¶
type Workflow interface {
// GenerateFromCluster creates GitOps resources from a cluster definition.
// This is the primary entry point for resource generation.
GenerateFromCluster(*Cluster) ([]client.Object, error)
// CreateLayoutWithResources creates a new manifest layout that includes
// both the application manifests and the GitOps resources needed to
// deploy them. This combines manifest generation with GitOps resource
// generation in a single operation.
// The rules parameter must be a layout.LayoutRules value.
// The returned ManifestLayoutResult is a *layout.ManifestLayout.
CreateLayoutWithResources(*Cluster, LayoutRulesProvider) (ManifestLayoutResult, error)
// GenerateBootstrap creates bootstrap resources for initializing the
// GitOps system itself. This is used to set up the GitOps controller
// (Flux, ArgoCD, etc.) in the cluster.
GenerateBootstrap(*BootstrapConfig, *Node) ([]client.Object, error)
}
Workflow defines the core interface for GitOps workflow implementations. This interface provides a minimal abstraction for converting stack definitions into GitOps-specific resources (Flux Kustomizations, ArgoCD Applications, etc.).
func NewWorkflow ¶
NewWorkflow creates a workflow implementation based on the provider type. Supported providers: "flux", "argocd"
Source Files
¶
Directories
¶
| Path | Synopsis |
|---|---|
|
Package generators provides a pluggable system for generating Kubernetes resources from different configuration formats.
|
Package generators provides a pluggable system for generating Kubernetes resources from different configuration formats. |
|
appworkload
Package appworkload provides generators for creating standard Kubernetes workloads (Deployments, StatefulSets, DaemonSets) along with their associated resources (Services, Ingresses, PersistentVolumeClaims).
|
Package appworkload provides generators for creating standard Kubernetes workloads (Deployments, StatefulSets, DaemonSets) along with their associated resources (Services, Ingresses, PersistentVolumeClaims). |
|
fluxhelm
Package fluxhelm provides generators for creating Flux HelmRelease resources along with their associated source resources (HelmRepository, GitRepository, OCIRepository, or Bucket).
|
Package fluxhelm provides generators for creating Flux HelmRelease resources along with their associated source resources (HelmRepository, GitRepository, OCIRepository, or Bucket). |
|
kurelpackage
Package kurelpackage provides a generator for creating kurel packages from Kubernetes manifests with support for values substitution, patches, and conditional extensions.
|
Package kurelpackage provides a generator for creating kurel packages from Kubernetes manifests with support for values substitution, patches, and conditional extensions. |
|
Package helm provides client-side Helm chart rendering from OCI registries.
|
Package helm provides client-side Helm chart rendering from OCI registries. |
|
Package layout provides utilities for generating cluster directory layouts and for writing Kubernetes and Flux manifests to disk.
|
Package layout provides utilities for generating cluster directory layouts and for writing Kubernetes and Flux manifests to disk. |