Skip to content

Commit 412b0a1

Browse files
Nekrozejoachifm
authored andcommittedJun 13, 2017
Kubernetes ABAC policy file fix (#26499)
Fix the incorrect nix map that generates the Kubernetes policy file (cherry picked from commit 9fb87f9)
1 parent 8dcd0ea commit 412b0a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎nixos/modules/services/cluster/kubernetes.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ let
4040
});
4141

4242
policyFile = pkgs.writeText "kube-policy"
43-
concatStringsSep "\n" (map (builtins.toJSON cfg.apiserver.authorizationPolicy));
43+
(concatStringsSep "\n" (map builtins.toJSON cfg.apiserver.authorizationPolicy));
4444

4545
cniConfig = pkgs.buildEnv {
4646
name = "kubernetes-cni-config";

0 commit comments

Comments
 (0)
Please sign in to comment.