Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion csp_benchmarks/hetzner/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ServerConfig:
name: str = "csp-benchmark-runner"
server_type: str = "cpx21" # 3 vCPU, 4GB RAM (AMD)
image: str = "ubuntu-24.04"
location: str = "fsn1" # Falkenstein, Germany
location: str = "nbg1" # Nuremberg, Germany (supports AMD cpx series)
ssh_key_name: str | None = None


Expand Down
2 changes: 1 addition & 1 deletion csp_benchmarks/tests/test_hetzner.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_default_config(self):
assert config.name == "csp-benchmark-runner"
assert config.server_type == "cpx21"
assert config.image == "ubuntu-24.04"
assert config.location == "fsn1"
assert config.location == "nbg1"
assert config.ssh_key_name is None

def test_custom_config(self):
Expand Down