Skip to content

Commit

Permalink
Merge pull request #353 from Danil-Grigorev/version-regex-support-2-n…
Browse files Browse the repository at this point in the history
…um-patch

🐛 Fix regex to support more then one patch version number
  • Loading branch information
furkatgofurov7 committed Jul 2, 2024
2 parents 3b8655d + 04e2a2b commit 07eef9b
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 07eef9b

Please sign in to comment.