mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-17 18:22:54 +02:00
13 lines
303 B
Nix
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";
|
|
};
|
|
}
|