summaryrefslogtreecommitdiff
path: root/gnu/machine/hetzner.scm
AgeCommit message (Collapse)Author
2026-03-20services, tests: Refer to inherited field values where applicable.Ludovic Courtès
* gnu/machine/hetzner.scm (operating-system-authorize): Refer to ‘services’ instead of calling ‘operating-system-user-services’. * gnu/services/virtualization.scm (secret-service-operating-system): Likewise. * gnu/tests.scm (operating-system-with-console-syslog): Likewise. * gnu/tests/avahi.scm (%avahi-os): Likewise. * gnu/tests/base.scm (%test-guix-daemon-unprivileged): Likewise. * gnu/tests/nfs.scm (%nfs-os): Likewise. (run-nfs-full-test): Likewise. * gnu/system/vm.scm (virtualized-operating-system): Refer to ‘initrd-modules’ instead of calling ‘operating-system-initrd-modules’. Change-Id: I00c5f5c1e171b174bf0ca709b2dbd13a2fe161b5
2025-11-24gnu: hetzner: Fix deploy on hetznerAshish SHUKLA
* gnu/machine/hetzner.scm (hetzner-machine-rescue-install-packages): Install uidmap package too. Change-Id: I86f638bc65d42cb4e26381cd91140cd92bc90b18 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2025-10-14machine: hetzner: Fix install OS.Remco van 't Veer
Debian no longer ships guix package. * gnu/machine/hetzner.scm (hetzner-machine-rescue-install-os): Use guix-install.sh. Change-Id: I8344d5877057181235c233d9f6f745507af30b85 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2025-06-26machine: hetzner: Fix machine bootstrap.Zheng Junjie
* gnu/machine/hetzner.scm (hetzner-machine-bootstrap-os-form): Use dhcp-client-service-type here. Change-Id: I4a3fd4ac598ea0b19cc81146de1f07fa256199b7 Signed-off-by: Hilton Chain <hako@ultrarare.space>
2025-06-09machine: hetzner: Use dhcpcd service instead of dhcp-client.Owen T. Heisler
This fixes DHCP-provided routes on servers that have both public and private interfaces. * gnu/machine/hetzner.scm (%hetzner-os-arm)[services]: Replace dhcp-client-service-type with dhcpcd-service-type. Fixes: https://codeberg.org/guix/guix/issues/407 Change-Id: I8e0b4fb12727e784f2b622273ffef504e58eddfe Signed-off-by: Hilton Chain <hako@ultrarare.space>
2025-04-21machine: hetzner: Allow attaching existing public IPs.Sergey Trofimov
* gnu/machine/hetzner.scm (hetzner-configuration): Add ipv4 and ipv6 fields. Export accessors. * gnu/machine/hetzner/http.scm (hetnzer-api-primary-ips): New function. (<hetzner-primary-ip>): New json mapping. (hetzner-api-server-create): Pass IP addresses in request. * doc/guix.texi (Invoking guix deploy): Document it. Change-Id: I44509cc98e041762dc483e876566e79bde85b26a Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2025-04-06machine: hetzner: Allow connections using ssh-agent.Sergey Trofimov
* gnu/machine/hetzner.scm (<hetzner-configuration>): Add ssh-public-key. * doc/guix.texi (System Configuration)[hetzner-configuration]: Document it. Change-Id: I7354ead508b1a4819534c6b22ba1f089749927c2 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Modified-by: Ludovic Courtès <ludo@gnu.org>
2025-02-28machine: hetzner: Fix deployment on smaller instances.Roman Scherer
* 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>
2025-02-19gnu: Fix some misspellings.Efraim Flashner
Change-Id: I316652aff7418af4b8e83bea24638b1513f8aa97
2025-02-09machine: Implement 'hetzner-environment-type'.Roman Scherer
* Makefile.am (SCM_TESTS): Add test modules. * doc/guix.texi: Add documentation. * gnu/local.mk (GNU_SYSTEM_MODULES): Add modules. * gnu/machine/hetzner.scm: Add hetzner-environment-type. * gnu/machine/hetzner/http.scm: Add HTTP API. * po/guix/POTFILES.in: Add Hetzner modules. * tests/machine/hetzner.scm: Add machine tests. * tests/machine/hetzner/http.scm Add HTTP API tests. Change-Id: I276ed5afed676bbccc6c852c56ee4db57ce3c1ea Signed-off-by: Ludovic Courtès <ludo@gnu.org>