mirror of
https://github.com/holos-run/holos.git
synced 2026-03-19 16:54:58 +00:00
Switch holos to use v1alpha3 so we can establish more of the CUE structures in the documented API using Go structs.
11 lines
322 B
Go
11 lines
322 B
Go
package v1alpha3
|
|
|
|
const KubernetesObjectsKind = "KubernetesObjects"
|
|
|
|
// KubernetesObjects represents a [Component] composed of Kubernetes API
|
|
// objects provided directly from CUE using [APIObjects].
|
|
type KubernetesObjects struct {
|
|
Component `json:",inline"`
|
|
Kind string `json:"kind" cue:"\"KubernetesObjects\""`
|
|
}
|