Skip to content

Commit 5f91df6

Browse files
authored
Merge pull request #12084 from dlipovetsky/cluster-worker-topology-reduce-maxlen-release-1.10
[release-1.10] 🐛 Fix MaxLength of worker topology Name fields
2 parents 6f622f7 + e837d0d commit 5f91df6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

api/v1beta1/cluster_types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ type MachineDeploymentTopology struct {
686686
// the values are hashed together.
687687
// +required
688688
// +kubebuilder:validation:MinLength=1
689-
// +kubebuilder:validation:MaxLength=256
689+
// +kubebuilder:validation:MaxLength=63
690690
Name string `json:"name"`
691691

692692
// failureDomain is the failure domain the machines will be created in.
@@ -797,7 +797,7 @@ type MachinePoolTopology struct {
797797
// the values are hashed together.
798798
// +required
799799
// +kubebuilder:validation:MinLength=1
800-
// +kubebuilder:validation:MaxLength=256
800+
// +kubebuilder:validation:MaxLength=63
801801
Name string `json:"name"`
802802

803803
// failureDomains is the list of failure domains the machine pool will be created in.

config/crd/bases/cluster.x-k8s.io_clusters.yaml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)