diff options
author | Roman Scherer <roman@burningswell.com> | 2025-02-27 19:24:46 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-02-28 23:03:36 +0100 |
commit | 2e8439d37ec79f6e0896f29d26bca2d024bd27fe (patch) | |
tree | def0c0f6a7f630c75dac399be68fd80c5356e05c /tests | |
parent | a4168d8ba75bff6d1a855dd6343ffc5d3b6b53c8 (diff) |
machine: hetzner: Fix deployment on smaller instances.
* gnu/machine/hetzner.scm (hetzner-machine-rescue-install-os): Avoid out of
disk space error by bind mounting /mnt/tmp/gnu/store to /gnu/store.
* tests/machine/hetzner.scm: Test with smaller instances.
* doc/guix.texi (Invoking guix deploy): Mention unsupported instance.
Change-Id: If8bfb6733de493b51813b3e82e255849192f7cba
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/machine/hetzner.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/machine/hetzner.scm b/tests/machine/hetzner.scm index 39eac4a4d5..1552bcb9a0 100644 --- a/tests/machine/hetzner.scm +++ b/tests/machine/hetzner.scm @@ -64,7 +64,7 @@ (environment hetzner-environment-type) (configuration (hetzner-configuration (labels %labels) - (server-type "cax41") + (server-type "cax11") (ssh-key %ssh-key-file))))) (define %x86-machine @@ -76,7 +76,7 @@ (environment hetzner-environment-type) (configuration (hetzner-configuration (labels %labels) - (server-type "cpx51") + (server-type "cx22") (ssh-key %ssh-key-file))))) (define (cleanup machine) |