2021-12-05 19:48:56 +00:00
|
|
|
{ config, lib, options, pkgs, ... }:
|
2018-07-22 12:14:20 +01:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
top = config.services.kubernetes;
|
2021-12-05 19:48:56 +00:00
|
|
|
otop = options.services.kubernetes;
|
2018-07-22 12:14:20 +01:00
|
|
|
cfg = top.proxy;
|
|
|
|
in
|
|
|
|
{
|
2019-12-10 01:51:19 +00:00
|
|
|
imports = [
|
|
|
|
(mkRenamedOptionModule [ "services" "kubernetes" "proxy" "address" ] ["services" "kubernetes" "proxy" "bindAddress"])
|
|
|
|
];
|
2018-07-22 12:14:20 +01:00
|
|
|
|
|
|
|
###### interface
|
|
|
|
options.services.kubernetes.proxy = with lib.types; {
|
|
|
|
|
|
|
|
bindAddress = mkOption {
|
|
|
|
description = "Kubernetes proxy listening address.";
|
|
|
|
default = "0.0.0.0";
|
|
|
|
type = str;
|
|
|
|
};
|
|
|
|
|
2019-04-20 02:41:48 +01:00
|
|
|
enable = mkEnableOption "Kubernetes proxy";
|
2018-07-22 12:14:20 +01:00
|
|
|
|
|
|
|
extraOpts = mkOption {
|
|
|
|
description = "Kubernetes proxy extra command line options.";
|
|
|
|
default = "";
|
2021-04-13 13:54:53 +01:00
|
|
|
type = separatedString " ";
|
2018-07-22 12:14:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
featureGates = mkOption {
|
|
|
|
description = "List set of feature gates";
|
|
|
|
default = top.featureGates;
|
2021-12-05 19:48:56 +00:00
|
|
|
defaultText = literalExpression "config.${otop.featureGates}";
|
2018-07-22 12:14:20 +01:00
|
|
|
type = listOf str;
|
|
|
|
};
|
|
|
|
|
2019-11-15 04:58:35 +00:00
|
|
|
hostname = mkOption {
|
|
|
|
description = "Kubernetes proxy hostname override.";
|
|
|
|
default = config.networking.hostName;
|
2021-11-26 00:16:05 +00:00
|
|
|
defaultText = literalExpression "config.networking.hostName";
|
2019-11-15 04:58:35 +00:00
|
|
|
type = str;
|
|
|
|
};
|
|
|
|
|
2022-01-08 05:59:18 +00:00
|
|
|
kubeconfig = top.lib.mkKubeConfigOptions "Kubernetes proxy";
|
2018-07-22 12:14:20 +01:00
|
|
|
|
|
|
|
verbosity = mkOption {
|
|
|
|
description = ''
|
|
|
|
Optional glog verbosity level for logging statements. See
|
|
|
|
<link xlink:href="https://github.com/kubernetes/community/blob/master/contributors/devel/logging.md"/>
|
|
|
|
'';
|
|
|
|
default = null;
|
|
|
|
type = nullOr int;
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
###### implementation
|
2019-08-24 11:52:32 +01:00
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.kube-proxy = {
|
2018-07-22 12:14:20 +01:00
|
|
|
description = "Kubernetes Proxy Service";
|
2019-08-24 11:52:32 +01:00
|
|
|
wantedBy = [ "kubernetes.target" ];
|
|
|
|
after = [ "kube-apiserver.service" ];
|
2021-06-28 20:33:17 +01:00
|
|
|
path = with pkgs; [ iptables conntrack-tools ];
|
2018-07-22 12:14:20 +01:00
|
|
|
serviceConfig = {
|
|
|
|
Slice = "kubernetes.slice";
|
|
|
|
ExecStart = ''${top.package}/bin/kube-proxy \
|
|
|
|
--bind-address=${cfg.bindAddress} \
|
|
|
|
${optionalString (top.clusterCidr!=null)
|
|
|
|
"--cluster-cidr=${top.clusterCidr}"} \
|
|
|
|
${optionalString (cfg.featureGates != [])
|
|
|
|
"--feature-gates=${concatMapStringsSep "," (feature: "${feature}=true") cfg.featureGates}"} \
|
2019-11-15 04:58:35 +00:00
|
|
|
--hostname-override=${cfg.hostname} \
|
2022-01-08 05:59:18 +00:00
|
|
|
--kubeconfig=${top.lib.mkKubeConfig "kube-proxy" cfg.kubeconfig} \
|
2018-07-22 12:14:20 +01:00
|
|
|
${optionalString (cfg.verbosity != null) "--v=${toString cfg.verbosity}"} \
|
|
|
|
${cfg.extraOpts}
|
|
|
|
'';
|
|
|
|
WorkingDirectory = top.dataDir;
|
2019-02-21 13:34:22 +00:00
|
|
|
Restart = "on-failure";
|
|
|
|
RestartSec = 5;
|
2018-07-22 12:14:20 +01:00
|
|
|
};
|
2021-07-30 16:16:23 +01:00
|
|
|
unitConfig = {
|
|
|
|
StartLimitIntervalSec = 0;
|
|
|
|
};
|
2018-07-22 12:14:20 +01:00
|
|
|
};
|
|
|
|
|
2019-11-15 04:58:35 +00:00
|
|
|
services.kubernetes.proxy.hostname = with config.networking; mkDefault hostName;
|
|
|
|
|
2018-07-22 12:14:20 +01:00
|
|
|
services.kubernetes.pki.certs = {
|
2022-01-08 05:59:18 +00:00
|
|
|
kubeProxyClient = top.lib.mkCert {
|
2018-07-22 12:14:20 +01:00
|
|
|
name = "kube-proxy-client";
|
|
|
|
CN = "system:kube-proxy";
|
|
|
|
action = "systemctl restart kube-proxy.service";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.kubernetes.proxy.kubeconfig.server = mkDefault top.apiserverAddress;
|
|
|
|
};
|
2022-01-08 06:10:25 +00:00
|
|
|
|
|
|
|
meta.buildDocsInSandbox = false;
|
2018-07-22 12:14:20 +01:00
|
|
|
}
|