lukebfox / nixops-hetznercloud

A NixOps plugin supporting Hetzner Cloud deployments.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CI

NixOps Hetzner Cloud Plugin

NixOps is a tool for deploying NixOS machines to a local network or cloud provider.

This repo contains a NixOps Plugin enabling Hetzner Cloud deployments. While you can already provision resources with the Terraform provider, this will do nothing for automating your NixOS deployment. The alternative, NixOps, offers a more integrated solution. The goal is to automate the entire process of provisioning and deploying your NixOS box with one tool. There is second Hetzner Cloud plugin at nix-community/nixops_hcloud, although it does not support as many features as this plugin, and requires bootstrapping.

Installing NixOps with plugins

Simply use nixopsUnstable from nixpkgs to get a handle on a nixops bundled with all the plugins including this one. Here is an example from my own configs.

Usage

Before you can use NixOps to manage Hetzner Cloud Resources you must have a Hetzner Cloud account. You'll need to manually create any project which you want to be managed with NixOps, and generate a project-specific API token which NixOps will use for authentication (security>api tokens>generate api token).

Currently supported resources are as follows:

Resource State
Server ✔️
Volume ✔️
Network ✔️
FloatingIP ✔️
Certificate ✔️
SSHKey
LoadBalancer
Firewall

The SSH key resource on Hetzner cloud exists purely to allow access to linux boxes when you first provision them. As this functionality is completely subsumed by Nix there's no point supporting this resource. The other resources could be supported although these are things which you can configure your NixOS boxes to handle using the array of packages/services in nixpkgs, so I'm open for contributions but I won't likely be writing these myself.

All NixOps deployment options specific to Hetzner Cloud are declared in the nix files at nixops_hetznercloud/nix.

The example code introduces Hetzner Cloud resource management with NixOps.

Developing

To start developing on the NixOps Hetzner Cloud plugin, you can run:

λ cd nixops-hetznercloud
λ nix develop # or `nix-shell`, if you have the old version of nix
λ poetry install
λ poetry shell

Testing

From inside the development shell above, execute pytest. Remember to set the environmental variable HCLOUD_API_TOKEN to the token for the hetzner cloud project you're using asfor testing.

Updating Dependencies

There are times when you may want to update this project's dependencies.

  • To get a more recent poetry/poetry2nix, you need to repin the nixpkgs flake input to the latest upstream commit by running nix flake update.
  • To use your own local version of NixOps or modify any python dependencies, edit pyproject.toml and run poetry lock.

Credit to the maintainers of the nixops-aws plugin which was a really useful model for nixops plugins and elitak for the original nixos-infect script.

About

A NixOps plugin supporting Hetzner Cloud deployments.

License:GNU Lesser General Public License v3.0


Languages

Language:Python 72.0%Language:Nix 24.2%Language:Shell 3.8%