Skip to content

Commit

Permalink
Merge pull request #17309 from hakman/automated-cherry-pick-of-#17296…
Browse files Browse the repository at this point in the history
…-upstream-release-1.32

Automated cherry pick of #17296: Change to cx22 as default instance for Hetzner as cx21 is no
  • Loading branch information
k8s-ci-robot authored Mar 8, 2025
2 parents be4be8a + 8081a5c commit ec8d625
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ metadata:
name: control-plane-fsn1-1
spec:
image: ubuntu-24.04
machineType: cx21
machineType: cx22
maxSize: 1
minSize: 1
role: Master
Expand All @@ -90,7 +90,7 @@ metadata:
name: control-plane-fsn1-2
spec:
image: ubuntu-24.04
machineType: cx21
machineType: cx22
maxSize: 1
minSize: 1
role: Master
Expand All @@ -108,7 +108,7 @@ metadata:
name: control-plane-fsn1-3
spec:
image: ubuntu-24.04
machineType: cx21
machineType: cx22
maxSize: 1
minSize: 1
role: Master
Expand All @@ -126,7 +126,7 @@ metadata:
name: nodes-fsn1
spec:
image: ubuntu-24.04
machineType: cx21
machineType: cx22
maxSize: 1
minSize: 1
role: Node
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ metadata:
name: control-plane-fsn1
spec:
image: ubuntu-24.04
machineType: cx21
machineType: cx22
maxSize: 1
minSize: 1
role: Master
Expand All @@ -82,7 +82,7 @@ metadata:
name: nodes-fsn1
spec:
image: ubuntu-24.04
machineType: cx21
machineType: cx22
maxSize: 1
minSize: 1
role: Node
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ metadata:
name: master-fsn1
spec:
image: ubuntu-20.04
machineType: cx21
machineType: cx22
maxSize: 1
minSize: 1
role: Master
Expand All @@ -78,7 +78,7 @@ metadata:
name: nodes-fsn1
spec:
image: ubuntu-20.04
machineType: cx21
machineType: cx22
maxSize: 1
minSize: 1
role: Node
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ resource "hcloud_server" "master-fsn1" {
ipv4_enabled = true
ipv6_enabled = false
}
server_type = "cx21"
server_type = "cx22"
ssh_keys = [hcloud_ssh_key.minimal-example-com-c4_a6_ed_9a_a8_89_b9_e2_c3_9c_d6_63_eb_9c_71_57.id]
user_data = filebase64("${path.module}/data/hcloud_server_master-fsn1_user_data")
}
Expand All @@ -274,7 +274,7 @@ resource "hcloud_server" "nodes-fsn1" {
ipv4_enabled = true
ipv6_enabled = false
}
server_type = "cx21"
server_type = "cx22"
ssh_keys = [hcloud_ssh_key.minimal-example-com-c4_a6_ed_9a_a8_89_b9_e2_c3_9c_d6_63_eb_9c_71_57.id]
user_data = filebase64("${path.module}/data/hcloud_server_nodes-fsn1_user_data")
}
Expand Down
4 changes: 2 additions & 2 deletions upup/pkg/fi/cloudup/populate_instancegroup_spec.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const (
defaultNodeMachineTypeGCE = "e2-medium"
defaultNodeMachineTypeDO = "s-2vcpu-4gb"
defaultNodeMachineTypeAzure = "Standard_B2s"
defaultNodeMachineTypeHetzner = "cx21"
defaultNodeMachineTypeHetzner = "cx22"
defaultNodeMachineTypeScaleway = "DEV1-M"

defaultBastionMachineTypeGCE = "e2-micro"
Expand All @@ -50,7 +50,7 @@ const (
defaultMasterMachineTypeGCE = "e2-medium"
defaultMasterMachineTypeDO = "s-2vcpu-4gb"
defaultMasterMachineTypeAzure = "Standard_B2s"
defaultMasterMachineTypeHetzner = "cx21"
defaultMasterMachineTypeHetzner = "cx22"
defaultMasterMachineTypeScaleway = "DEV1-M"

defaultDOImageFocal = "ubuntu-20-04-x64"
Expand Down

0 comments on commit ec8d625

Please sign in to comment.