depot/cluster/services/ways/options/way.nix

124 lines
3 KiB
Nix
Raw Normal View History

{ config, lib, name, options, ... }:
2024-07-04 02:57:36 +03:00
with lib;
{
options = {
internal = mkOption {
description = "Whether to only make this Way available internally. Will use the internal subdomain.";
type = types.bool;
default = false;
};
name = mkOption {
description = "Domain name to use.";
2024-07-04 02:57:36 +03:00
type = types.str;
default = let
basename = "${name}.${config.domainSuffix}";
in if config.wildcard then "~^(.+)\.${lib.escapeRegex basename}$" else basename;
};
dnsRecord = {
name = mkOption {
description = "DNS record name for this Way.";
type = types.str;
default = if config.wildcard then "^[^_].+\\.${lib.escapeRegex name}" else name;
};
value = mkOption {
description = "DNS record value for this Way.";
type = types.deferredModule;
default = {
consulService = "${name}.${if config.internal then "ways-proxy-internal" else "ways-proxy"}";
rewrite.type = lib.mkIf config.wildcard "regex";
};
};
2024-07-04 02:57:36 +03:00
};
2024-08-23 03:50:01 +03:00
grpc = mkOption {
description = "Whether this endpoint is a gRPC service.";
type = types.bool;
default = false;
};
2024-07-04 02:57:36 +03:00
target = mkOption {
type = types.str;
};
wildcard = mkOption {
type = types.bool;
default = false;
};
consulService = mkOption {
type = types.str;
};
2024-07-08 00:38:56 +03:00
bucket = mkOption {
type = types.str;
};
static = mkOption {
type = with types; functionTo (coercedTo package (package: "${package.webroot or package}") str);
};
2024-07-04 02:57:36 +03:00
healthCheckPath = mkOption {
type = types.path;
default = "/.well-known/ways/internal-health-check";
};
2024-08-03 01:11:46 +03:00
url = mkOption {
type = types.str;
readOnly = true;
default = "https://${name}.${config.domainSuffix}";
};
mode = mkOption {
type = types.enum [ "simple" "consul" "static" ];
internal = true;
default = "simple";
};
nginxUpstreamName = mkOption {
type = types.str;
internal = true;
};
domainSuffixInternal = mkOption {
type = types.str;
internal = true;
};
domainSuffixExternal = mkOption {
type = types.str;
internal = true;
};
domainSuffix = mkOption {
type = types.str;
internal = true;
default = if config.internal then config.domainSuffixInternal else config.domainSuffixExternal;
};
2024-07-04 02:57:36 +03:00
extras = mkOption {
description = "Extra configuration to pass to the nginx virtual host submodule.";
type = types.deferredModule;
default = {};
};
};
config = lib.mkMerge [
(lib.mkIf options.consulService.isDefined {
mode = "consul";
nginxUpstreamName = "ways_upstream_${builtins.hashString "md5" options.consulService.value}";
2024-08-23 03:50:01 +03:00
target = "${if config.grpc then "grpc" else "http"}://${options.nginxUpstreamName.value}";
})
2024-07-08 00:38:56 +03:00
(lib.mkIf options.bucket.isDefined {
consulService = "garage-web";
})
(lib.mkIf options.static.isDefined {
mode = "static";
})
];
2024-07-04 02:57:36 +03:00
}