Merge pull request #43728 from srhb/k8srbacfix

nixos/kubernetes: Don't lose rbac submodule with no explicit options
This commit is contained in:
Sarah Brofeldt
2018-07-18 12:37:44 +02:00
committed by GitHub

View File

@@ -10,8 +10,8 @@ in {
rbac = mkOption {
description = "Role-based access control (RBAC) options";
default = {};
type = types.submodule {
options = {
enable = mkOption {
description = "Whether to enable role based access control is enabled for kubernetes dashboard";
@@ -24,7 +24,6 @@ in {
type = types.bool;
default = false;
};
};
};
};