Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 77fe10e

Browse files
authored
chore(dogfood): update EU server from Helsinki to Falkenstein (#17061)
1 parent 60c4944 commit 77fe10e

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

dogfood/coder-envbuilder/main.tf

+10-6
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@ locals {
2020
docker_host = {
2121
"" = "tcp://dogfood-ts-cdr-dev.tailscale.svc.cluster.local:2375"
2222
"us-pittsburgh" = "tcp://dogfood-ts-cdr-dev.tailscale.svc.cluster.local:2375"
23-
"eu-helsinki" = "tcp://reinhard-hel-cdr-dev.tailscale.svc.cluster.local:2375"
24-
"ap-sydney" = "tcp://wolfgang-syd-cdr-dev.tailscale.svc.cluster.local:2375"
25-
"sa-saopaulo" = "tcp://oberstein-sao-cdr-dev.tailscale.svc.cluster.local:2375"
26-
"za-jnb" = "tcp://greenhill-jnb-cdr-dev.tailscale.svc.cluster.local:2375"
23+
// For legacy reasons, this host is labelled `eu-helsinki` but it's
24+
// actually in Germany now.
25+
"eu-helsinki" = "tcp://katerose-fsn-cdr-dev.tailscale.svc.cluster.local:2375"
26+
"ap-sydney" = "tcp://wolfgang-syd-cdr-dev.tailscale.svc.cluster.local:2375"
27+
"sa-saopaulo" = "tcp://oberstein-sao-cdr-dev.tailscale.svc.cluster.local:2375"
28+
"za-jnb" = "tcp://greenhill-jnb-cdr-dev.tailscale.svc.cluster.local:2375"
2729
}
2830

2931
envbuilder_repo = "ghcr.io/coder/envbuilder-preview"
@@ -59,8 +61,10 @@ data "coder_parameter" "region" {
5961
value = "us-pittsburgh"
6062
}
6163
option {
62-
icon = "/emojis/1f1eb-1f1ee.png"
63-
name = "Helsinki"
64+
icon = "/emojis/1f1e9-1f1ea.png"
65+
name = "Falkenstein"
66+
// For legacy reasons, this host is labelled `eu-helsinki` but it's
67+
// actually in Germany now.
6468
value = "eu-helsinki"
6569
}
6670
option {

dogfood/coder/main.tf

+10-6
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ locals {
1717
docker_host = {
1818
"" = "tcp://dogfood-ts-cdr-dev.tailscale.svc.cluster.local:2375"
1919
"us-pittsburgh" = "tcp://dogfood-ts-cdr-dev.tailscale.svc.cluster.local:2375"
20-
"eu-helsinki" = "tcp://reinhard-hel-cdr-dev.tailscale.svc.cluster.local:2375"
21-
"ap-sydney" = "tcp://wolfgang-syd-cdr-dev.tailscale.svc.cluster.local:2375"
22-
"sa-saopaulo" = "tcp://oberstein-sao-cdr-dev.tailscale.svc.cluster.local:2375"
23-
"za-cpt" = "tcp://schonkopf-cpt-cdr-dev.tailscale.svc.cluster.local:2375"
20+
// For legacy reasons, this host is labelled `eu-helsinki` but it's
21+
// actually in Germany now.
22+
"eu-helsinki" = "tcp://katerose-fsn-cdr-dev.tailscale.svc.cluster.local:2375"
23+
"ap-sydney" = "tcp://wolfgang-syd-cdr-dev.tailscale.svc.cluster.local:2375"
24+
"sa-saopaulo" = "tcp://oberstein-sao-cdr-dev.tailscale.svc.cluster.local:2375"
25+
"za-cpt" = "tcp://schonkopf-cpt-cdr-dev.tailscale.svc.cluster.local:2375"
2426
}
2527

2628
repo_base_dir = data.coder_parameter.repo_base_dir.value == "~" ? "/home/coder" : replace(data.coder_parameter.repo_base_dir.value, "/^~\\//", "/home/coder/")
@@ -64,8 +66,10 @@ data "coder_parameter" "region" {
6466
value = "us-pittsburgh"
6567
}
6668
option {
67-
icon = "/emojis/1f1eb-1f1ee.png"
68-
name = "Helsinki"
69+
icon = "/emojis/1f1e9-1f1ea.png"
70+
name = "Falkenstein"
71+
// For legacy reasons, this host is labelled `eu-helsinki` but it's
72+
// actually in Germany now.
6973
value = "eu-helsinki"
7074
}
7175
option {

0 commit comments

Comments
 (0)