Files
TerraHome/nixos/kubeadm/hosts/cp-1.nix
MichaelFisher1997 21be01346b
Some checks failed
Terraform Plan / Terraform Plan (push) Failing after 9s
feat: refactor infra to cp/wk kubeadm topology
Provision 3 thin control planes and 3 workers with role-specific sizing and VMID ranges (701/711), generate per-node cloud-init snippets with SSH key injection, and add NixOS kubeadm host/module scaffolding for cp-1..3 and wk-1..3.
2026-02-28 14:16:55 +00:00

15 lines
264 B
Nix

{ lib, ... }:
{
imports =
[
../modules/k8s-common.nix
../modules/k8s-control-plane.nix
]
++ lib.optional (builtins.pathExists ./hardware/cp-1.nix) ./hardware/cp-1.nix;
networking.hostName = "cp-1";
system.stateVersion = "25.05";
}