Files
k8scd/nix-infra-machine/__test__/elasticsearch/nodes/testnode001.nix
T
2026-03-15 18:31:53 +01:00

13 lines
303 B
Nix

{ config, pkgs, lib, ... }: {
# Enable Elasticsearch using the infrastructure module
infrastructure.elasticsearch = {
enable = true;
bindToIp = "127.0.0.1";
httpPort = 9202;
transportPort = 9302;
clusterName = "test-cluster";
singleNode = true;
heapSize = "512m";
};
}