Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(kinds): add binaryOverrideUrl and metadataOverrideUrl #1133

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions kinds/apis/v1beta1/config_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ func ConvertFrom(e k0sv1beta1.HelmExtensions, t *Helm) (*Helm, error) {
// ConfigSpec defines the desired state of Config
type ConfigSpec struct {
Version string `json:"version,omitempty"`
BinaryOverrideURL string `json:"binaryOverrideUrl,omitempty"`
MetadataOverrideURL string `json:"metadataOverrideUrl,omitempty"`
Roles Roles `json:"roles,omitempty"`
UnsupportedOverrides UnsupportedOverrides `json:"unsupportedOverrides,omitempty"`
Extensions Extensions `json:"extensions,omitempty"`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ spec:
spec:
description: ConfigSpec defines the desired state of Config
properties:
binaryOverrideUrl:
type: string
extensions:
properties:
helm:
Expand Down Expand Up @@ -93,6 +95,8 @@ spec:
type: array
type: object
type: object
metadataOverrideUrl:
type: string
roles:
description: Roles is the various roles in the cluster.
properties:
Expand Down Expand Up @@ -306,6 +310,8 @@ spec:
config:
description: Config holds the configuration used at installation time.
properties:
binaryOverrideUrl:
type: string
extensions:
properties:
helm:
Expand Down Expand Up @@ -358,6 +364,8 @@ spec:
type: array
type: object
type: object
metadataOverrideUrl:
type: string
roles:
description: Roles is the various roles in the cluster.
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ spec:
spec:
description: ConfigSpec defines the desired state of Config
properties:
binaryOverrideUrl:
type: string
extensions:
properties:
helm:
Expand Down Expand Up @@ -92,6 +94,8 @@ spec:
type: array
type: object
type: object
metadataOverrideUrl:
type: string
roles:
description: Roles is the various roles in the cluster.
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ spec:
config:
description: Config holds the configuration used at installation time.
properties:
binaryOverrideUrl:
type: string
extensions:
properties:
helm:
Expand Down Expand Up @@ -144,6 +146,8 @@ spec:
type: array
type: object
type: object
metadataOverrideUrl:
type: string
roles:
description: Roles is the various roles in the cluster.
properties:
Expand Down
Loading