From 7386d3a5ee7a54e1d6c9e4cbf9d76cb569e1cb9d Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Fri, 31 Oct 2025 15:55:14 +0000 Subject: [PATCH] Don't try to run consul on the cloud. --- README.md | 4 +--- common/cloud-node.nix | 8 -------- hosts/alo-cloud-1/default.nix | 2 +- 3 files changed, 2 insertions(+), 12 deletions(-) delete mode 100644 common/cloud-node.nix diff --git a/README.md b/README.md index f4a3bd1..1066eed 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,6 @@ Each layer extends the previous one, inheriting all configurations. Hosts select ### Special Node Types -- **cloud-node**: Minimal + Consul only (cloud VPS deployments) - **compute-node**: Cluster + Nomad worker (container orchestration) ## Directory Structure @@ -40,7 +39,6 @@ Each layer extends the previous one, inheriting all configurations. Hosts select │ ├── server-node.nix # Server layer: bare metal services (future) │ ├── workstation-node.nix # Workstation layer: dev tools │ ├── desktop-node.nix # Desktop layer: GUI environment -│ ├── cloud-node.nix # Cloud VPS profile │ ├── compute-node.nix # Nomad worker profile │ └── [feature modules] # Individual feature configs ├── hosts/ @@ -101,7 +99,7 @@ This ensures system and user configurations stay synchronized. | Host | Profile | Role | Hardware | |------|---------|------|----------| | **c1, c2, c3** | compute-node | Nomad workers | Bare metal servers | -| **alo-cloud-1** | cloud-node | Reverse proxy | Cloud VPS | +| **alo-cloud-1** | minimal | Reverse proxy (Traefik) | Cloud VPS | | **chilly** | server | Home Assistant in a VM | Bare metal server | | **zippy** | workstation | Development machine, server | Bare metal server | | **sparky** | desktop | Desktop environment | Bare metal desktop | diff --git a/common/cloud-node.nix b/common/cloud-node.nix deleted file mode 100644 index 11ea6fc..0000000 --- a/common/cloud-node.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ pkgs, ... }: -{ - # Cloud node: Minimal system with Consul for cloud deployments - imports = [ - ./minimal-node.nix - ./consul.nix - ]; -} diff --git a/hosts/alo-cloud-1/default.nix b/hosts/alo-cloud-1/default.nix index d8569d9..8f46ee8 100644 --- a/hosts/alo-cloud-1/default.nix +++ b/hosts/alo-cloud-1/default.nix @@ -2,7 +2,7 @@ { imports = [ ../../common/global - ../../common/cloud-node.nix # Minimal system with Consul + ../../common/minimal-node.nix ./hardware.nix ./reverse-proxy.nix ];