Documentation ¶
Overview ¶
Package v1alpha4 contains the core API contract between the holos cli and CUE configuration code. Platform designers, operators, and software developers use this API to write configuration in CUE which `holos` loads. The overall shape of the API defines imperative actions `holos` should carry out to render the complete yaml that represents a Platform.
Platform defines the complete configuration of a platform. With the holos reference platform this takes the shape of one management cluster and at least two workload clusters.
Each holos component path, e.g. `components/namespaces` produces exactly one BuildPlan which produces an Artifact collection. An Artifact is a fully rendered manifest produced from a Transformer sequence, which transforms a Generator collection.
Index ¶
- type Artifact
- type BuildPlan
- type BuildPlanSpec
- type Chart
- type Component
- type File
- type FileContent
- type FileContentMap
- type FilePath
- type Generator
- type Helm
- type InternalLabel
- type Join
- type Kind
- type Kustomization
- type Kustomize
- type Metadata
- type NameLabel
- type Platform
- type PlatformSpec
- type Repository
- type Resource
- type Resources
- type Transformer
- type Values
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Artifact ¶
type Artifact struct { Artifact FilePath `json:"artifact,omitempty"` Generators []Generator `json:"generators,omitempty"` Transformers []Transformer `json:"transformers,omitempty"` Skip bool `json:"skip,omitempty"` }
Artifact represents one fully rendered manifest produced by a Transformer sequence, which transforms a Generator collection. A BuildPlan produces an Artifact collection.
Each Artifact produces one manifest file artifact. Generator Output values are used as Transformer Inputs. The Output field of the final Transformer should have the same value as the Artifact field.
When there is more than one Generator there must be at least one Transformer to combine outputs into one Artifact. If there is a single Generator, it may directly produce the Artifact output.
An Artifact is processed concurrently with other artifacts in the same BuildPlan. An Artifact should not use an output from another Artifact as an input. Each Generator may also run concurrently. Each Transformer is executed sequentially starting after all generators have completed.
Output fields are write-once. It is an error for multiple Generators or Transformers to produce the same Output value within the context of a BuildPlan.
type BuildPlan ¶
type BuildPlan struct { // Kind represents the type of the resource. Kind string `json:"kind" cue:"\"BuildPlan\""` // APIVersion represents the versioned schema of the resource. APIVersion string `json:"apiVersion" cue:"string | *\"v1alpha4\""` // Metadata represents data about the resource such as the Name. Metadata Metadata `json:"metadata"` // Spec specifies the desired state of the resource. Spec BuildPlanSpec `json:"spec"` }
BuildPlan represents a build plan for holos to execute. Each Platform component produces exactly one BuildPlan.
One or more Artifact files are produced by a BuildPlan, representing the fully rendered manifests for the Kubernetes API Server.
type BuildPlanSpec ¶
type BuildPlanSpec struct { // Component represents the component that produced the build plan. // Represented as a path relative to the platform root. Component string `json:"component"` // Disabled causes the holos cli to disregard the build plan. Disabled bool `json:"disabled,omitempty"` // Artifacts represents the artifacts for holos to build. Artifacts []Artifact `json:"artifacts"` }
BuildPlanSpec represents the specification of the BuildPlan.
type Chart ¶
type Chart struct { // Name represents the chart name. Name string `json:"name"` // Version represents the chart version. Version string `json:"version"` // Release represents the chart release when executing helm template. Release string `json:"release"` // Repository represents the repository to fetch the chart from. Repository Repository `json:"repository,omitempty"` }
Chart represents a Helm Chart.
type Component ¶
type Component struct { // Name represents the name of the component, injected as a tag to set the // BuildPlan metadata.name field. Necessary for clear user feedback during // platform rendering. Name string `json:"name"` // Component represents the path of the component relative to the platform root. Component string `json:"component"` // Cluster is the cluster name to provide when rendering the component. Cluster string `json:"cluster"` // Environment for example, dev, test, stage, prod Environment string `json:"environment,omitempty"` // Model represents the platform model holos gets from from the // PlatformService.GetPlatform rpc method and provides to CUE using a tag. Model map[string]any `json:"model"` // Tags represents cue tags to inject when rendering the component. The json // struct tag names of other fields in this struct are reserved tag names not // to be used in the tags collection. Tags []string `json:"tags,omitempty"` }
Component represents the complete context necessary to produce a BuildPlan from a Platform component.
All of these fields are passed to the holos render component command using flags, which in turn are injected to CUE using tags. Field names should be used consistently through the platform rendering process for readability.
type File ¶
type File struct { // Source represents a file sub-path relative to the component path. Source FilePath `json:"source"` }
File represents a simple single file copy Generator. Useful with a Kustomize Transformer to process plain manifest files stored in the component directory. Multiple File generators may be used to transform multiple resources.
type FileContentMap ¶
type FileContentMap map[FilePath]FileContent
FileContentMap represents a mapping of file paths to file contents.
type Generator ¶
type Generator struct { // Kind represents the kind of generator. Must be Resources, Helm, or File. Kind string `json:"kind" cue:"\"Resources\" | \"Helm\" | \"File\""` // Output represents a file for a Transformer or Artifact to consume. Output FilePath `json:"output"` // Resources generator. Ignored unless kind is Resources. Resources are // stored as a two level struct. The top level key is the Kind of resource, // e.g. Namespace or Deployment. The second level key is an arbitrary // InternalLabel. The third level is a map[string]any representing the // Resource. Resources Resources `json:"resources,omitempty"` // Helm generator. Ignored unless kind is Helm. Helm Helm `json:"helm,omitempty"` // File generator. Ignored unless kind is File. File File `json:"file,omitempty"` }
Generator generates an intermediate manifest for a Artifact.
Each Generator in a Artifact must have a distinct Output value for a Transformer to reference.
type Helm ¶
type Helm struct { // Chart represents a helm chart to manage. Chart Chart `json:"chart"` // Values represents values for holos to marshal into values.yaml when // rendering the chart. Values Values `json:"values"` // EnableHooks enables helm hooks when executing the `helm template` command. EnableHooks bool `json:"enableHooks,omitempty"` // Namespace represents the helm namespace flag Namespace string `json:"namespace,omitempty"` }
type InternalLabel ¶
type InternalLabel string
InternalLabel is an arbitrary unique identifier internal to holos itself. The holos cli is expected to never write a InternalLabel value to rendered output files, therefore use a InternalLabel when the identifier must be unique and internal. Defined as a type for clarity and type checking.
type Join ¶
type Join struct {
Separator string `json:"separator" cue:"string | *\"---\\n\""`
}
Join represents a Join(https://pkg.go.dev/strings#Join) Transformer. Useful for the common case of combining the output of Helm and Resources Generator into one Artifact when Kustomize is otherwise unnecessary.
type Kind ¶
type Kind string
Kind is a discriminator. Defined as a type for clarity and type checking.
type Kustomization ¶
Kustomization represents a kustomization.yaml file for use with the Kustomize Transformer. Untyped to avoid tightly coupling holos to kubectl versions which was a problem for the Flux maintainers. Type checking is expected to happen in CUE against the kubectl version the user prefers.
type Kustomize ¶
type Kustomize struct { // Kustomization represents the decoded kustomization.yaml file Kustomization Kustomization `json:"kustomization"` // Files holds file contents for kustomize, e.g. patch files. Files FileContentMap `json:"files,omitempty"` }
Kustomize represents a kustomization Transformer.
type Metadata ¶
type Metadata struct { // Name represents the resource name. Name string `json:"name"` }
Metadata represents data about the resource such as the Name.
type NameLabel ¶
type NameLabel string
NameLabel is a unique identifier useful to convert a CUE struct to a list when the values have a Name field with a default value. NameLabel indicates the common use case of converting a struct to a list where the Name field of the value aligns with the outer struct field name.
For example:
Outer: [NAME=_]: Name: NAME
type Platform ¶
type Platform struct { // Kind is a string value representing the resource. Kind string `json:"kind" cue:"\"Platform\""` // APIVersion represents the versioned schema of this resource. APIVersion string `json:"apiVersion" cue:"string | *\"v1alpha4\""` // Metadata represents data about the resource such as the Name. Metadata Metadata `json:"metadata"` // Spec represents the specification. Spec PlatformSpec `json:"spec"` }
Platform represents a platform to manage. A Platform resource informs holos which components to build. The platform resource also acts as a container for the platform model form values provided by the PlatformService. The primary use case is to collect the cluster names, cluster types, platform model, and holos components to build into one resource.
type PlatformSpec ¶
type PlatformSpec struct { // Components represents a list of holos components to manage. Components []Component `json:"components"` }
PlatformSpec represents the specification of a Platform. Think of a platform spec as a Component collection for multiple kubernetes clusters combined with the user-specified Platform Model.
type Repository ¶
type Resources ¶
type Resources map[Kind]map[InternalLabel]Resource
Resources represents a kubernetes resources Generator from CUE.
type Transformer ¶
type Transformer struct { // Kind represents the kind of transformer. Must be Kustomize, or Join. Kind string `json:"kind" cue:"\"Kustomize\" | \"Join\""` // Inputs represents the files to transform. The Output of prior Generators // and Transformers. Inputs []FilePath `json:"inputs"` // Output represents a file for a subsequent Transformer or Artifact to // consume. Output FilePath `json:"output"` // Kustomize transformer. Ignored unless kind is Kustomize. Kustomize Kustomize `json:"kustomize,omitempty"` // Join transformer. Ignored unless kind is Join. Join Join `json:"join,omitempty"` }
Transformer transforms Generator manifests within a Artifact.