20 lines
441 B
Nix
20 lines
441 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|