Skip to content

Commit

Permalink
Remove mentions of K8s v1.24
Browse files Browse the repository at this point in the history
  • Loading branch information
hakman committed May 11, 2024
1 parent 0eccf1a commit 8480949
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 13 deletions.
2 changes: 0 additions & 2 deletions pkg/model/components/awscloudcontrollermanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ func (b *AWSCloudControllerManagerOptionsBuilder) BuildOptions(o interface{}) er
if eccm.Image == "" {
// See https://us.gcr.io/k8s-artifacts-prod/provider-aws/cloud-controller-manager
switch b.KubernetesVersion.Minor {
case 24:
eccm.Image = "registry.k8s.io/provider-aws/cloud-controller-manager:v1.24.19"
case 25:
eccm.Image = "registry.k8s.io/provider-aws/cloud-controller-manager:v1.25.15"
case 26:
Expand Down
2 changes: 0 additions & 2 deletions pkg/model/components/clusterautoscaler.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ func (b *ClusterAutoscalerOptionsBuilder) BuildOptions(o interface{}) error {
v, err := util.ParseKubernetesVersion(clusterSpec.KubernetesVersion)
if err == nil {
switch v.Minor {
case 24:
image = "registry.k8s.io/autoscaling/cluster-autoscaler:v1.24.3"
case 25:
image = "registry.k8s.io/autoscaling/cluster-autoscaler:v1.25.3"
case 26:
Expand Down
4 changes: 1 addition & 3 deletions pkg/model/components/containerd.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ func (b *ContainerdOptionsBuilder) BuildOptions(o interface{}) error {
// Set version based on Kubernetes version
if fi.ValueOf(containerd.Version) == "" {
switch {
case b.IsKubernetesLT("1.24.14"):
fallthrough
case b.IsKubernetesGTE("1.25") && b.IsKubernetesLT("1.25.10"):
case b.IsKubernetesLT("1.25.10"):
fallthrough
case b.IsKubernetesGTE("1.26") && b.IsKubernetesLT("1.26.5"):
fallthrough
Expand Down
8 changes: 2 additions & 6 deletions upup/pkg/fi/cloudup/template_functions.go
Original file line number Diff line number Diff line change
Expand Up @@ -888,9 +888,7 @@ func (tf *TemplateFunctions) OpenStackCCMTag() string {
if err != nil {
tag = "latest"
} else {
if parsed.Minor == 24 {
tag = "v1.24.6"
} else if parsed.Minor == 25 {
if parsed.Minor == 25 {
tag = "v1.25.5"
} else if parsed.Minor == 26 {
tag = "v1.26.2"
Expand All @@ -912,9 +910,7 @@ func (tf *TemplateFunctions) OpenStackCSITag() string {
if err != nil {
tag = "latest"
} else {
if parsed.Minor == 24 {
tag = "v1.24.6"
} else if parsed.Minor == 25 {
if parsed.Minor == 25 {
tag = "v1.25.5"
} else if parsed.Minor == 26 {
tag = "v1.26.2"
Expand Down

0 comments on commit 8480949

Please sign in to comment.