Skip to content

Commit

Permalink
Allow empty version for RKE2 CP
Browse files Browse the repository at this point in the history
Signed-off-by: Danil-Grigorev <danil.grigorev@suse.com>
  • Loading branch information
Danil-Grigorev committed May 30, 2024
1 parent 65761c1 commit 2545c38
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion controlplane/api/v1beta1/rke2controlplane_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ type RKE2ControlPlaneSpec struct {

// Version defines the desired Kubernetes version.
// This field takes precedence over RKE2ConfigSpec.AgentConfig.Version (which is deprecated).
// +kubebuilder:validation:Pattern="v(\\d\\.\\d{2}\\.\\d)\\+rke2r\\d"
// +kubebuilder:validation:Pattern="(v\\d\\.\\d{2}\\.\\d\\+rke2r\\d)|^$"
// +optional
Version string `json:"version"`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2446,7 +2446,7 @@ spec:
description: |-
Version defines the desired Kubernetes version.
This field takes precedence over RKE2ConfigSpec.AgentConfig.Version (which is deprecated).
pattern: v(\d\.\d{2}\.\d)\+rke2r\d
pattern: (v\d\.\d{2}\.\d\+rke2r\d)|^$
type: string
required:
- infrastructureRef
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@ spec:
description: |-
Version defines the desired Kubernetes version.
This field takes precedence over RKE2ConfigSpec.AgentConfig.Version (which is deprecated).
pattern: v(\d\.\d{2}\.\d)\+rke2r\d
pattern: (v\d\.\d{2}\.\d\+rke2r\d)|^$
type: string
required:
- infrastructureRef
Expand Down

0 comments on commit 2545c38

Please sign in to comment.