Add two new nodes to k2, taint master node

This commit is contained in:
Jonas Juselius
2021-09-22 21:13:36 +02:00
parent af39c22db2
commit 18de464e2f
6 changed files with 100 additions and 25 deletions

View File

@@ -1,7 +1,7 @@
{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.node;
cfg = config.features.k8s.host;
mkSANs = host: [
host.name
@@ -94,18 +94,6 @@ let
};
in {
options.node = {
address = mkOption {
type = types.str;
default = null;
};
name = mkOption {
type = types.str;
default = null;
};
};
config = configuration;
imports = [