Skip to content

Commit

Permalink
update default hetzner server type.
Browse files Browse the repository at this point in the history
  • Loading branch information
akvatol committed Jul 25, 2024
1 parent 427b73f commit 3f2f5e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ Settings prefix is `hetzner`.

Server type (size).

_Default_: `cx51`
_Default_: `cx52`

- `hetzner_image_name`

Expand Down
2 changes: 1 addition & 1 deletion yascheduler/config/cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class ConfigCloudHetzner:
max_nodes: int = _make_default_field(10, extra_validators=[validators.ge(0)])
username: str = _make_default_field("root")
priority: int = _make_default_field(0)
server_type: str = _make_default_field("cx51")
server_type: str = _make_default_field("cx52")
image_name: str = _make_default_field("debian-11")
idle_tolerance: int = _make_default_field(120, extra_validators=[validators.ge(1)])
jump_username: Optional[str] = field(default=None, validator=opt_str_val)
Expand Down

0 comments on commit 3f2f5e7

Please sign in to comment.