8063382867
The whole block is already wrapped in cfg.enable and this breaks some things.
116 lines
2.8 KiB
Nix
116 lines
2.8 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
with pkgs.lib;
|
|
|
|
let
|
|
cfg = config.services.elasticsearch;
|
|
|
|
es_home = "/var/lib/elasticsearch";
|
|
|
|
configFile = pkgs.writeText "elasticsearch.yml" ''
|
|
network.host: ${cfg.host}
|
|
network.port: ${cfg.port}
|
|
network.tcp.port: ${cfg.tcp_port}
|
|
cluster.name: ${cfg.cluster_name}
|
|
${cfg.extraConf}
|
|
'';
|
|
|
|
in {
|
|
|
|
###### interface
|
|
|
|
options.services.elasticsearch = {
|
|
enable = mkOption {
|
|
description = "Whether to enable elasticsearch";
|
|
default = false;
|
|
type = types.uniq types.bool;
|
|
};
|
|
|
|
host = mkOption {
|
|
description = "Elasticsearch listen address";
|
|
default = "127.0.0.1";
|
|
type = types.str;
|
|
};
|
|
|
|
port = mkOption {
|
|
description = "Elasticsearch port to listen for HTTP traffic";
|
|
default = "9200";
|
|
type = types.str;
|
|
};
|
|
|
|
tcp_port = mkOption {
|
|
description = "Elasticsearch port for the node to node communication";
|
|
default = "9300";
|
|
type = types.str;
|
|
};
|
|
|
|
cluster_name = mkOption {
|
|
description = "Elasticsearch name that identifies your cluster for auto-discovery";
|
|
default = "elasticsearch";
|
|
type = types.str;
|
|
};
|
|
|
|
extraConf = mkOption {
|
|
description = "Extra configuration for elasticsearch";
|
|
default = "";
|
|
type = types.str;
|
|
example = ''
|
|
node.name: "elasticsearch"
|
|
node.master: true
|
|
node.data: false
|
|
index.number_of_shards: 5
|
|
index.number_of_replicas: 1
|
|
'';
|
|
};
|
|
|
|
logging = mkOption {
|
|
description = "Elasticsearch logging configuration";
|
|
default = ''
|
|
rootLogger: INFO, console
|
|
logger:
|
|
action: INFO
|
|
com.amazonaws: WARN
|
|
appender:
|
|
console:
|
|
type: console
|
|
layout:
|
|
type: consolePattern
|
|
conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
|
|
'';
|
|
type = types.str;
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.etc = [
|
|
{ source = configFile;
|
|
target = "elasticsearch/elasticsearch.yml"; }
|
|
{ source = pkgs.writeText "logging.yml" cfg.logging;
|
|
target = "elasticsearch/logging.yml"; }
|
|
];
|
|
|
|
systemd.services.elasticsearch = {
|
|
description = "Elasticsearch daemon";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network-interfaces.target" ];
|
|
environment = { ES_HOME = es_home; };
|
|
serviceConfig = {
|
|
ExecStart = "${pkgs.elasticsearch}/bin/elasticsearch -f -Des.path.conf=/etc/elasticsearch";
|
|
User = "elasticsearch";
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.elasticsearch ];
|
|
|
|
users.extraUsers = singleton {
|
|
name = "elasticsearch";
|
|
uid = config.ids.uids.elasticsearch;
|
|
description = "Elasticsearch daemon user";
|
|
home = es_home;
|
|
createHome = true;
|
|
};
|
|
};
|
|
}
|