nixos/hadoop: correct openFirewall options

main
illustris 3 years ago
parent c8df915e0e
commit 8331b56701
  1. 4
      nixos/modules/services/cluster/hadoop/hdfs.nix

@ -134,7 +134,7 @@ in
};
};
networking.firewall.allowedTCPPorts = (mkIf cfg.hdfs.datanode.openFirewall [
networking.firewall.allowedTCPPorts = (mkIf cfg.hdfs.journalnode.openFirewall [
8480 # dfs.journalnode.http-address
8485 # dfs.journalnode.rpc-address
]);
@ -174,7 +174,7 @@ in
Restart = "always";
};
};
networking.firewall.allowedTCPPorts = (mkIf cfg.hdfs.datanode.openFirewall [
networking.firewall.allowedTCPPorts = (mkIf cfg.hdfs.httpfs.openFirewall [
14000 # httpfs.http.port
]);
})

Loading…
Cancel
Save