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

13 lines
297 B
Nix

{ config, pkgs, lib, ... }: {
# Enable OpenSearch using the infrastructure module
infrastructure.opensearch = {
enable = true;
bindToIp = "127.0.0.1";
httpPort = 9201;
transportPort = 9301;
clusterName = "test-cluster";
singleNode = true;
heapSize = "512m";
};
}