k3s: init
This commit is contained in:
parent
4224240da0
commit
4e8d440a67
1 changed files with 17 additions and 0 deletions
17
modules/k3s/default.nix
Normal file
17
modules/k3s/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ pkgs, config, lib, ... }:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.eboskma.k3s;
|
||||
in
|
||||
{
|
||||
options.eboskma.k3s = { enable = mkEnableOption "k3s"; };
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
services.k3s = {
|
||||
enable = true;
|
||||
extraFlags = "--tls-san=10.0.0.4 --tls-san=100.106.117.132";
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [ kubectl kubernetes-helm ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue