Kubernetes ABAC policy file fix (#26499)

Fix the incorrect nix map that generates the Kubernetes policy file
This commit is contained in:
Taylor "Nekroze" Lawson 2017-06-14 05:54:36 +10:00 committed by Joachim Schiele
parent 4fc077bfee
commit 9fb87f9c9d

View file

@ -40,7 +40,7 @@ let
});
policyFile = pkgs.writeText "kube-policy"
concatStringsSep "\n" (map (builtins.toJSON cfg.apiserver.authorizationPolicy));
(concatStringsSep "\n" (map builtins.toJSON cfg.apiserver.authorizationPolicy));
cniConfig = pkgs.buildEnv {
name = "kubernetes-cni-config";