-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds support for the Hetzner Cloud platform. They currently support (2022-12-07) the folling images: ``` bastelfreak@bastelfreak-nb ~ $ hcloud image list --type system ID TYPE NAME DESCRIPTION IMAGE SIZE DISK SIZE CREATED DEPRECATED 3 system centos-7 CentOS 7 - 5 GB Mon Jan 15 12:34:45 CET 2018 - 168855 system ubuntu-18.04 Ubuntu 18.04 - 5 GB Wed May 2 13:02:30 CEST 2018 - 5924233 system debian-10 Debian 10 - 5 GB Mon Jul 8 08:35:48 CEST 2019 - 15512617 system ubuntu-20.04 Ubuntu 20.04 - 5 GB Thu Apr 23 19:55:14 CEST 2020 - 45557056 system debian-11 Debian 11 - 5 GB Mon Aug 16 13:12:01 CEST 2021 - 45778012 system centos-stream-8 CentOS Stream 8 - 5 GB Thu Aug 5 07:07:23 CEST 2021 - 45780948 system rocky-8 Rocky Linux 8 - 5 GB Thu Aug 19 08:30:23 CEST 2021 - 59752342 system centos-stream-9 CentOS Stream 9 - 5 GB Thu Jan 27 08:52:03 CET 2022 - 67794396 system ubuntu-22.04 Ubuntu 22.04 - 5 GB Thu Apr 21 15:32:38 CEST 2022 - 69726282 system fedora-36 Fedora 36 - 5 GB Wed May 11 07:50:00 CEST 2022 - 76766499 system rocky-9 Rocky Linux 9 - 5 GB Wed Jul 20 15:55:52 CEST 2022 - bastelfreak@bastelfreak-nb ~ $ ```
- Loading branch information
1 parent
69a6104
commit d011713
Showing
4 changed files
with
52 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
require 'beaker-hostgenerator/data' | ||
require 'beaker-hostgenerator/hypervisor' | ||
require 'deep_merge/rails_compat' | ||
|
||
module BeakerHostGenerator | ||
module Hypervisor | ||
|
||
class Hcloud < BeakerHostGenerator::Hypervisor::Interface | ||
include BeakerHostGenerator::Data | ||
|
||
def generate_node(node_info, base_config, bhg_version) | ||
return base_generate_node(node_info, base_config, bhg_version, :hcloud) | ||
end | ||
end | ||
end | ||
end |