mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
Kubernetes ABAC policy file fix (#26499)
Fix the incorrect nix map that generates the Kubernetes policy file
This commit is contained in:
parent
4fc077bfee
commit
9fb87f9c9d
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ let
|
||||||
});
|
});
|
||||||
|
|
||||||
policyFile = pkgs.writeText "kube-policy"
|
policyFile = pkgs.writeText "kube-policy"
|
||||||
concatStringsSep "\n" (map (builtins.toJSON cfg.apiserver.authorizationPolicy));
|
(concatStringsSep "\n" (map builtins.toJSON cfg.apiserver.authorizationPolicy));
|
||||||
|
|
||||||
cniConfig = pkgs.buildEnv {
|
cniConfig = pkgs.buildEnv {
|
||||||
name = "kubernetes-cni-config";
|
name = "kubernetes-cni-config";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue