nixos/cri-o: remove cni-plugins from environment.systemPackages
This commit is contained in:
parent
c52cc1953c
commit
54b59dd6c0
1 changed files with 5 additions and 1 deletions
|
@ -42,7 +42,7 @@ in
|
|||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs;
|
||||
[ cri-o cri-tools conmon cni-plugins iptables runc utillinux ];
|
||||
[ cri-o cri-tools conmon iptables runc utillinux ];
|
||||
environment.etc."crictl.yaml".text = ''
|
||||
runtime-endpoint: unix:///var/run/crio/crio.sock
|
||||
'';
|
||||
|
@ -57,6 +57,10 @@ in
|
|||
${concatMapStringsSep ", " (x: "\"" + x + "\"") cfg.registries}
|
||||
]
|
||||
|
||||
[crio.network]
|
||||
plugin_dirs = ["${pkgs.cni-plugins}/bin/"]
|
||||
network_dir = "/etc/cni/net.d/"
|
||||
|
||||
[crio.runtime]
|
||||
conmon = "${pkgs.conmon}/bin/conmon"
|
||||
log_level = "${cfg.logLevel}"
|
||||
|
|
Loading…
Reference in a new issue