Skip to content

Commit a57bca8

Browse files
authored
Merge pull request #218 from TheAifam5/feat/hetzner-new-offerings
Update for new Hetzner Cloud offerings
2 parents 8c3178d + 84ba71c commit a57bca8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
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 = "cpx21", location = "fsn1", count = 3 }
164+
{ name = "control", type = "cpx22", location = "fsn1", count = 3 }
165165
]
166166
worker_nodepools = [
167-
{ name = "worker", type = "cpx11", 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 = "cpx11"
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 = "cpx11"
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 = "cpx11"
769+
type = "cpx22"
770770
location = "fsn1"
771771
min = 0
772772
max = 6

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ variable "cluster_autoscaler_discovery_enabled" {
500500
variable "packer_amd64_builder" {
501501
type = object({
502502
server_type = optional(string, "cpx11")
503-
server_location = optional(string, "fsn1")
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)