mirror of
https://github.com/holos-run/holos.git
synced 2026-03-21 09:45:00 +00:00
Switch holos to use v1alpha3 so we can establish more of the CUE structures in the documented API using Go structs.
12 lines
366 B
Go
12 lines
366 B
Go
package v1alpha3
|
|
|
|
const (
|
|
APIVersion = "v1alpha3"
|
|
BuildPlanKind = "BuildPlan"
|
|
HelmChartKind = "HelmChart"
|
|
// ChartDir is the directory name created in the holos component directory to cache a chart.
|
|
ChartDir = "vendor"
|
|
// ResourcesFile is the file name used to store component output when post-processing with kustomize.
|
|
ResourcesFile = "resources.yaml"
|
|
)
|