Skip to content

Commit

Permalink
Moving cx11 to cx22.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaliy Zakaznikov committed Nov 8, 2024
1 parent d7961b2 commit bbc850e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion testflows/github/hetzner/runners/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def location_type(v):


def server_type(v):
"""Server type argument. Example: cx11"""
"""Server type argument. Example: cx22"""
return ServerType(name=v)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def argparser():
dest="default_server_type",
metavar="name",
type=args.server_type,
help=("default runner server type name, default: cx11"),
help=("default runner server type name, default: cx22"),
)

parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion testflows/github/hetzner/runners/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class Config:
max_runners: int = 10
max_runners_in_workflow_run: int = None
default_image: Image = image("x86:system:ubuntu-22.04")
default_server_type: ServerType = server_type("cx11")
default_server_type: ServerType = server_type("cx22")
default_location: Location = None
workers: int = 10
scripts: str = os.path.join(current_dir, "..", "scripts")
Expand Down
4 changes: 2 additions & 2 deletions testflows/github/hetzner/runners/config/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@
"examples": ["x86:system:ubuntu-22.04"]
},
"default_server_type": {
"description": "The default runner server type name, default: cx11.",
"description": "The default runner server type name, default: cx22.",
"type": "string",
"examples": ["cx11"]
"examples": ["cx22"]
},
"default_location": {
"description": "The default runner server location name, by default not specified.",
Expand Down

0 comments on commit bbc850e

Please sign in to comment.