mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-19 16:09:19 +03:00

Previously some modules used `config.environment.etc."ssl/certs/ca-certificates.crt".source`, some used `"/etc/ssl/certs/ca-certificates.crt"`, and some used `"${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"`. These were all bad in one way or another: - `config.environment.etc."ssl/certs/ca-certificates.crt".source` relies on `source` being set; if `text` is set instead this breaks, introducing a weird undocumented requirement - `"/etc/ssl/certs/ca-certificates.crt"` is probably okay but very un-nix. It's a magic string, and the path doesn't change when the file changes (and so you can't trigger service reloads, for example, when the contents change in a new system activation) - `"${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"` silently doesn't include the options from `security.pki` Co-authored-by: Shelvacu <git@shelvacu.com>
231 lines
6.6 KiB
Nix
231 lines
6.6 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
options,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.gocd-agent;
|
|
opt = options.services.gocd-agent;
|
|
in
|
|
{
|
|
options = {
|
|
services.gocd-agent = {
|
|
enable = lib.mkEnableOption "gocd-agent";
|
|
|
|
user = lib.mkOption {
|
|
default = "gocd-agent";
|
|
type = lib.types.str;
|
|
description = ''
|
|
User the Go.CD agent should execute under.
|
|
'';
|
|
};
|
|
|
|
group = lib.mkOption {
|
|
default = "gocd-agent";
|
|
type = lib.types.str;
|
|
description = ''
|
|
If the default user "gocd-agent" is configured then this is the primary
|
|
group of that user.
|
|
'';
|
|
};
|
|
|
|
extraGroups = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [ ];
|
|
example = [
|
|
"wheel"
|
|
"docker"
|
|
];
|
|
description = ''
|
|
List of extra groups that the "gocd-agent" user should be a part of.
|
|
'';
|
|
};
|
|
|
|
packages = lib.mkOption {
|
|
default = [
|
|
pkgs.stdenv
|
|
pkgs.jre
|
|
pkgs.git
|
|
config.programs.ssh.package
|
|
pkgs.nix
|
|
];
|
|
defaultText = lib.literalExpression "[ pkgs.stdenv pkgs.jre pkgs.git config.programs.ssh.package pkgs.nix ]";
|
|
type = lib.types.listOf lib.types.package;
|
|
description = ''
|
|
Packages to add to PATH for the Go.CD agent process.
|
|
'';
|
|
};
|
|
|
|
agentConfig = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.str;
|
|
example = ''
|
|
agent.auto.register.resources=ant,java
|
|
agent.auto.register.environments=QA,Performance
|
|
agent.auto.register.hostname=Agent01
|
|
'';
|
|
description = ''
|
|
Agent registration configuration.
|
|
'';
|
|
};
|
|
|
|
goServer = lib.mkOption {
|
|
default = "https://127.0.0.1:8154/go";
|
|
type = lib.types.str;
|
|
description = ''
|
|
URL of the GoCD Server to attach the Go.CD Agent to.
|
|
'';
|
|
};
|
|
|
|
workDir = lib.mkOption {
|
|
default = "/var/lib/go-agent";
|
|
type = lib.types.str;
|
|
description = ''
|
|
Specifies the working directory in which the Go.CD agent java archive resides.
|
|
'';
|
|
};
|
|
|
|
initialJavaHeapSize = lib.mkOption {
|
|
default = "128m";
|
|
type = lib.types.str;
|
|
description = ''
|
|
Specifies the initial java heap memory size for the Go.CD agent java process.
|
|
'';
|
|
};
|
|
|
|
maxJavaHeapMemory = lib.mkOption {
|
|
default = "256m";
|
|
type = lib.types.str;
|
|
description = ''
|
|
Specifies the java maximum heap memory size for the Go.CD agent java process.
|
|
'';
|
|
};
|
|
|
|
startupOptions = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [
|
|
"-Xms${cfg.initialJavaHeapSize}"
|
|
"-Xmx${cfg.maxJavaHeapMemory}"
|
|
"-Djava.io.tmpdir=/tmp"
|
|
"-Dcruise.console.publish.interval=10"
|
|
"-Djava.security.egd=file:/dev/./urandom"
|
|
];
|
|
defaultText = lib.literalExpression ''
|
|
[
|
|
"-Xms''${config.${opt.initialJavaHeapSize}}"
|
|
"-Xmx''${config.${opt.maxJavaHeapMemory}}"
|
|
"-Djava.io.tmpdir=/tmp"
|
|
"-Dcruise.console.publish.interval=10"
|
|
"-Djava.security.egd=file:/dev/./urandom"
|
|
]
|
|
'';
|
|
description = ''
|
|
Specifies startup command line arguments to pass to Go.CD agent
|
|
java process.
|
|
'';
|
|
};
|
|
|
|
extraOptions = lib.mkOption {
|
|
default = [ ];
|
|
type = lib.types.listOf lib.types.str;
|
|
example = [
|
|
"-X debug"
|
|
"-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5006"
|
|
"-verbose:gc"
|
|
"-Xloggc:go-agent-gc.log"
|
|
"-XX:+PrintGCTimeStamps"
|
|
"-XX:+PrintTenuringDistribution"
|
|
"-XX:+PrintGCDetails"
|
|
"-XX:+PrintGC"
|
|
];
|
|
description = ''
|
|
Specifies additional command line arguments to pass to Go.CD agent
|
|
java process. Example contains debug and gcLog arguments.
|
|
'';
|
|
};
|
|
|
|
environment = lib.mkOption {
|
|
default = { };
|
|
type = with lib.types; attrsOf str;
|
|
description = ''
|
|
Additional environment variables to be passed to the Go.CD agent process.
|
|
As a base environment, Go.CD agent receives NIX_PATH from
|
|
{option}`environment.sessionVariables`, NIX_REMOTE is set to
|
|
"daemon".
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
users.groups = lib.optionalAttrs (cfg.group == "gocd-agent") {
|
|
gocd-agent.gid = config.ids.gids.gocd-agent;
|
|
};
|
|
|
|
users.users = lib.optionalAttrs (cfg.user == "gocd-agent") {
|
|
gocd-agent = {
|
|
description = "gocd-agent user";
|
|
createHome = true;
|
|
home = cfg.workDir;
|
|
group = cfg.group;
|
|
extraGroups = cfg.extraGroups;
|
|
useDefaultShell = true;
|
|
uid = config.ids.uids.gocd-agent;
|
|
};
|
|
};
|
|
|
|
systemd.services.gocd-agent = {
|
|
description = "GoCD Agent";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
environment =
|
|
let
|
|
selectedSessionVars = lib.filterAttrs (
|
|
n: v: builtins.elem n [ "NIX_PATH" ]
|
|
) config.environment.sessionVariables;
|
|
in
|
|
selectedSessionVars
|
|
// {
|
|
NIX_REMOTE = "daemon";
|
|
AGENT_WORK_DIR = cfg.workDir;
|
|
AGENT_STARTUP_ARGS = ''${lib.concatStringsSep " " cfg.startupOptions}'';
|
|
LOG_DIR = cfg.workDir;
|
|
LOG_FILE = "${cfg.workDir}/go-agent-start.log";
|
|
}
|
|
// cfg.environment;
|
|
|
|
path = cfg.packages;
|
|
|
|
script = ''
|
|
MPATH="''${PATH}";
|
|
source /etc/profile
|
|
export PATH="''${MPATH}:''${PATH}";
|
|
|
|
if ! test -f ~/.nixpkgs/config.nix; then
|
|
mkdir -p ~/.nixpkgs/
|
|
echo "{ allowUnfree = true; }" > ~/.nixpkgs/config.nix
|
|
fi
|
|
|
|
mkdir -p config
|
|
rm -f config/autoregister.properties
|
|
ln -s "${pkgs.writeText "autoregister.properties" cfg.agentConfig}" config/autoregister.properties
|
|
|
|
${pkgs.git}/bin/git config --global --add http.sslCAinfo ${config.security.pki.caBundle}
|
|
${pkgs.jre}/bin/java ${lib.concatStringsSep " " cfg.startupOptions} \
|
|
${lib.concatStringsSep " " cfg.extraOptions} \
|
|
-jar ${pkgs.gocd-agent}/go-agent/agent-bootstrapper.jar \
|
|
-serverUrl ${cfg.goServer}
|
|
'';
|
|
|
|
serviceConfig = {
|
|
User = cfg.user;
|
|
WorkingDirectory = cfg.workDir;
|
|
RestartSec = 30;
|
|
Restart = "on-failure";
|
|
};
|
|
};
|
|
};
|
|
}
|