Skip to content

Commit 84ba71c

Browse files
committed
Change control plane and worker node instance types and the AMD64 builder location to Ashburn, VA due to EU limitations in offerings
Signed-off-by: Mateusz Paluszkiewicz <[email protected]>
1 parent fadbb77 commit 84ba71c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,10 @@ module "kubernetes" {
161161
ingress_nginx_enabled = true
162162
163163
control_plane_nodepools = [
164-
{ name = "control", type = "cx23", location = "fsn1", count = 3 }
164+
{ name = "control", type = "cpx22", location = "fsn1", count = 3 }
165165
]
166166
worker_nodepools = [
167-
{ name = "worker", type = "cpx32", location = "fsn1", count = 3 }
167+
{ name = "worker", type = "cpx22", location = "fsn1", count = 3 }
168168
]
169169
}
170170
```
@@ -324,7 +324,7 @@ Example `kubernetes.tf` snippet:
324324
cluster_autoscaler_nodepools = [
325325
{
326326
name = "autoscaler"
327-
type = "cpx32"
327+
type = "cpx22"
328328
location = "fsn1"
329329
min = 0
330330
max = 6
@@ -420,7 +420,7 @@ worker_nodepools = [
420420
# ... (other node pool configurations)
421421
{
422422
name = "egress"
423-
type = "cpx32"
423+
type = "cpx22"
424424
location = "fsn1"
425425
labels = { "egress-node" = "true" }
426426
taints = [ "egress-node=true:NoSchedule" ]
@@ -766,7 +766,7 @@ talos_backup_s3_hcloud_url = "https://<bucket>.<location>.your-objectstorage.co
766766
cluster_autoscaler_nodepools = [
767767
{
768768
name = "autoscaler"
769-
type = "cpx32"
769+
type = "cpx22"
770770
location = "fsn1"
771771
min = 0
772772
max = 6

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,8 +499,8 @@ variable "cluster_autoscaler_discovery_enabled" {
499499
# Packer
500500
variable "packer_amd64_builder" {
501501
type = object({
502-
server_type = optional(string, "cx23")
503-
server_location = optional(string, "fsn1")
502+
server_type = optional(string, "cpx11")
503+
server_location = optional(string, "ash")
504504
})
505505
default = {}
506506
description = "Configuration for the server used when building the Talos AMD64 image with Packer."

0 commit comments

Comments
 (0)