Skip to content

Commit

Permalink
Kubernetes ABAC policy file fix (#26499)
Browse files Browse the repository at this point in the history
Fix the incorrect nix map that generates the Kubernetes policy file

(cherry picked from commit 9fb87f9)
  • Loading branch information
Nekroze authored and joachifm committed Jun 13, 2017
1 parent 8dcd0ea commit 412b0a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/cluster/kubernetes.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 412b0a1

Please sign in to comment.