Split nixops deployments.
This commit is contained in:
19
k8s.nix
Normal file
19
k8s.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
k8s00 = { config, lib, pkgs, ... }:
|
||||
{
|
||||
deployment.targetHost = "10.253.18.101";
|
||||
imports = [ ./k8s00/configuration.nix ];
|
||||
};
|
||||
|
||||
k8s01 = { config, lib, pkgs, ... }:
|
||||
{
|
||||
deployment.targetHost = "10.253.18.100";
|
||||
imports = [ ./k8s01/configuration.nix ];
|
||||
};
|
||||
|
||||
k8s02 = { config, lib, pkgs, ... }:
|
||||
{
|
||||
deployment.targetHost = "10.253.18.102";
|
||||
imports = [ ./k8s02/configuration.nix ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user