nix: inline the swarm sub-path aliases at their use sites
autheliaCfg/forgeCfg/vmCfg/vlCfg were local re-exports of hyperhiveCfg.swarm.<subpath> — a shape that hides the full option path from grep, the same hazard #4356 fixed for the tls alias. Removed the six let-bindings and spelled the full hyperhiveCfg.swarm.<subpath>.<field> path at every use site instead. None of the read fields (url, machine, hiveClientPrefix, agentClientSuffix, domain, port) sit on the old side of a mkRenamedOptionModule in deploy.nix, so inlining the alias's own current path is correct as-is. Refs #4363 Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
parent
815f977d7c
commit
276bf8531a
6 changed files with 21 additions and 28 deletions
|
|
@ -20,11 +20,8 @@ let
|
|||
networkCfg = config.services.hyperhive.network;
|
||||
hyperhiveCfg = config.services.hyperhive;
|
||||
gatewayCfg = hyperhiveCfg.gateway;
|
||||
autheliaCfg = hyperhiveCfg.swarm.authelia;
|
||||
baoCfg = hyperhiveCfg.swarm.bao;
|
||||
baoDeploy = deployCfg.bao;
|
||||
vmCfg = hyperhiveCfg.swarm.victoriametrics;
|
||||
vlCfg = hyperhiveCfg.swarm.victorialogs;
|
||||
swarmDomain = hyperhiveCfg.swarm.domain;
|
||||
|
||||
caTrust = import ./lib/hive-ca-trust.nix {
|
||||
|
|
@ -90,7 +87,7 @@ let
|
|||
# is a Grafana with no login of any kind, arrived at silently. SSO is a
|
||||
# requirement of running this service, so an unconfigured swarm fails to
|
||||
# build and says which option to set.
|
||||
ssoConfigured = autheliaCfg.url != null;
|
||||
ssoConfigured = hyperhiveCfg.swarm.authelia.url != null;
|
||||
|
||||
# A reader of the store is defined by holding a certificate the store
|
||||
# accepts, never by standing next to it — the rule
|
||||
|
|
@ -104,7 +101,7 @@ let
|
|||
# around by reaching into authelia's tree whenever it happens to be local.
|
||||
haveClientIdentity = baoDeploy.clientCertFile != null && baoDeploy.clientKeyFile != null;
|
||||
|
||||
autheliaUrl = toString autheliaCfg.url;
|
||||
autheliaUrl = toString hyperhiveCfg.swarm.authelia.url;
|
||||
|
||||
# Where the plaintext lands inside the container. Under /var/lib rather
|
||||
# than /run: Grafana may start before the delivery unit on a later boot,
|
||||
|
|
@ -304,7 +301,7 @@ in
|
|||
|
||||
datasourceUrl = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "http://127.0.0.1:${toString vmCfg.port}";
|
||||
default = "http://127.0.0.1:${toString hyperhiveCfg.swarm.victoriametrics.port}";
|
||||
defaultText = lib.literalExpression ''"http://127.0.0.1:''${toString services.hyperhive.swarm.victoriametrics.port}"'';
|
||||
description = ''
|
||||
Where the provisioned datasource points. Defaults to the metrics
|
||||
|
|
@ -317,7 +314,7 @@ in
|
|||
|
||||
logsDatasourceUrl = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "http://127.0.0.1:${toString vlCfg.port}";
|
||||
default = "http://127.0.0.1:${toString hyperhiveCfg.swarm.victorialogs.port}";
|
||||
defaultText = lib.literalExpression ''"http://127.0.0.1:''${toString services.hyperhive.swarm.victorialogs.port}"'';
|
||||
description = ''
|
||||
Where the provisioned logs datasource points. Same reasoning as
|
||||
|
|
|
|||
Loading…
Reference in a new issue