31 lines
686 B
Nix
31 lines
686 B
Nix
{ config, globals, lib, ... }: {
|
|
options.kms.enable = lib.mkEnableOption "kms";
|
|
|
|
config = lib.mkIf config.kms.enable {
|
|
kubernetes.resources = {
|
|
deployments.server.spec = {
|
|
selector.matchLabels.app = "kms";
|
|
|
|
template = {
|
|
metadata.labels.app = "kms";
|
|
|
|
spec.containers.kms = {
|
|
image = globals.images.kms;
|
|
ports.kms.containerPort = 1688;
|
|
};
|
|
};
|
|
};
|
|
|
|
services.server.spec = {
|
|
type = "LoadBalancer";
|
|
loadBalancerIP = globals.kmsIPv4;
|
|
selector.app = "kms";
|
|
|
|
ports.kms = {
|
|
port = 1688;
|
|
targetPort = "kms";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|