https://github.com/hetznercloud/nomad-dev-env
Nomad development environment for our Integrations.
https://github.com/hetznercloud/nomad-dev-env
nomad terraform terraform-module
Last synced: about 2 months ago
JSON representation
Nomad development environment for our Integrations.
- Host: GitHub
- URL: https://github.com/hetznercloud/nomad-dev-env
- Owner: hetznercloud
- Created: 2024-11-19T11:00:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-03-31T07:11:32.000Z (3 months ago)
- Last Synced: 2026-03-31T09:30:50.272Z (3 months ago)
- Topics: nomad, terraform, terraform-module
- Language: HCL
- Homepage:
- Size: 128 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Nomad Dev Env
This repository provides an easy way to setup a simple Nomad cluster with self-signed certificates on the Hetzner cloud.
> [!WARNING]
> This project is not an official Hetzner Cloud Integration and is intended to be used internally. There is no backwards-compatibility promise.
## Requirements
- [Nomad](https://developer.hashicorp.com/nomad/docs/install)
- [OpenTofu](https://opentofu.org/docs/intro/install/)
## Usage
1. Set the `HCLOUD_TOKEN` environment variable
> [!WARNING]
> The development environment runs on Hetzner Cloud servers, which will induce costs.
2. Deploy the development cluster:
```bash
make -C example up
```
3. Load the generated configuration to access the development cluster:
```bash
source example/files/env.sh
```
4. Check that the development cluster is healthy:
```bash
nomad node status
```
⚠️ Do not forget to clean up the development cluster once you are finished:
```sh
make -C example down
```