some tries to make it work
This commit is contained in:
parent
5d8f603193
commit
b20ae104b8
2 changed files with 3 additions and 1 deletions
|
@ -62,6 +62,7 @@ in
|
|||
allowedUDPPorts =
|
||||
[ ]
|
||||
++ lib.optionals kc_cfg.services.k3s.enable [
|
||||
7946
|
||||
8472
|
||||
]
|
||||
++ lib.optionals kc_cfg.services.nfs.enable [
|
||||
|
@ -77,6 +78,7 @@ in
|
|||
2379
|
||||
2380
|
||||
6443
|
||||
7946
|
||||
10250
|
||||
]
|
||||
++ lib.optionals kc_cfg.services.nfs.enable [
|
||||
|
|
|
@ -25,7 +25,7 @@ in
|
|||
services.nfs.server = {
|
||||
enable = true;
|
||||
exports = ''
|
||||
${cfg.exportDirectory} ${cfg.clusterWildcard}(rw,sync,no_wdelay,no_root_squash,insecure)
|
||||
${cfg.exportDirectory} ${cfg.clusterWildcard}(rw,sync,no_wdelay,no_root_squash,insecure,no_subtree_check)
|
||||
'';
|
||||
statdPort = 4000;
|
||||
lockdPort = 4001;
|
||||
|
|
Loading…
Reference in a new issue