mirror of
https://github.com/holos-run/holos.git
synced 2026-04-07 18:15:00 +00:00
Separate out the Kustomization and Kustomize types commonly used in holos components. Embed HolosComponent into Result.
8 lines
288 B
Go
8 lines
288 B
Go
package v1alpha1
|
|
|
|
// Kustomization holds the rendered flux kustomization api object content for git ops.
|
|
type Kustomization struct {
|
|
// KsContent is the yaml representation of the flux kustomization for gitops.
|
|
KsContent string `json:"ksContent,omitempty" yaml:"ksContent,omitempty"`
|
|
}
|