diff options
Diffstat (limited to 'cluster')
-rw-r--r-- | cluster/prod/cluster.nix | 3 | ||||
-rw-r--r-- | cluster/staging/cluster.nix | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/cluster/prod/cluster.nix b/cluster/prod/cluster.nix index 278f3cf..ab3395e 100644 --- a/cluster/prod/cluster.nix +++ b/cluster/prod/cluster.nix @@ -77,6 +77,9 @@ }; }; + # Keep using Nomad 1.4 + services.nomad.package = pkgs.nomad_1_4; + # Bootstrap IPs for Consul cluster, # these are IPs on the Wireguard overlay services.consul.extraConfig.retry_join = [ diff --git a/cluster/staging/cluster.nix b/cluster/staging/cluster.nix index a76d0ce..b696ee5 100644 --- a/cluster/staging/cluster.nix +++ b/cluster/staging/cluster.nix @@ -100,7 +100,7 @@ ## ===== EXPERIMENTAL SECTION FOR STAGING CLUSTER ===== # Test nomad 1.6 - services.nomad.package = lib.mkForce pkgs.nomad_1_6; + services.nomad.package = pkgs.nomad_1_6; nixpkgs.config.allowUnfree = true; # Accept nomad's BSL license # We're doing lots of experiments so GC periodically is usefull. |