This commit is contained in:
Evan Reichard 2025-01-27 10:02:49 -05:00
parent 88431c9d5c
commit dbb1183018

View File

@ -10,6 +10,7 @@
serverAddr = lib.mkOption { serverAddr = lib.mkOption {
type = lib.types.str; type = lib.types.str;
description = "The server to join"; description = "The server to join";
default = "";
}; };
networkConfig = lib.mkOption { networkConfig = lib.mkOption {
type = lib.types.submodule { type = lib.types.submodule {
@ -41,22 +42,16 @@
}; };
}; };
config = {
# ---------------------------------------- # ----------------------------------------
# ---------- Base Configuration ---------- # ---------- Base Configuration ----------
# ---------------------------------------- # ----------------------------------------
# System Configuration # OpenEBS Mayastor Requirements
system.stateVersion = "24.11"; boot.kernelModules = [ "nvme_tcp" ];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Boot Configuration
boot.kernelModules = [ "nvme_tcp" ]; # OpenEBS Mayastor Requirement
boot.kernel.sysctl = { boot.kernel.sysctl = {
"vm.nr_hugepages" = 1024; "vm.nr_hugepages" = 1024;
}; };
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot";
# Network Configuration # Network Configuration
networking = { networking = {
@ -98,14 +93,6 @@
}; };
}; };
# User Configuration
users.users.root = {
openssh.authorizedKeys.keys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEA8P84lWL/p13ZBFNwITm/dLWWL8s9pVmdOImM5gaJAiTLY+DheUvG6YsveB2/5STseiJ34g7Na9TW1mtTLL8zDqPvj3NbprQiYlLJKMbCk6dtfdD4nLMHl8B48e1h699XiZDp2/c+jJb0MkLOFrps+FbPqt7pFt1Pj29tFy8BCg0LGndu6KO+HqYS+aM5tp5hZESo1RReiJ8aHsu5X7wW46brN4gfyyu+8X4etSZAB9raWqlln9NKK7G6as6X+uPypvSjYGSTC8TSePV1iTPwOxPk2+1xBsK7EBLg3jNrrYaiXLnZvBOOhm11JmHzqEJ6386FfQO+0r4iDVxmvi+ojw== rsa-key-20141114"
];
hashedPassword = null; # Disable Password Login
};
# System Packages # System Packages
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
htop htop
@ -116,15 +103,6 @@
vim vim
]; ];
# Enable SSH Server
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false; # Disable Password Login
PermitRootLogin = "prohibit-password"; # Disable Password Login
};
};
# ---------------------------------------- # ----------------------------------------
# ---------- RKE2 Configuration ---------- # ---------- RKE2 Configuration ----------
# ---------------------------------------- # ----------------------------------------
@ -140,6 +118,7 @@
# Enable RKE2 # Enable RKE2
services.rke2 = { services.rke2 = {
enable = true; enable = true;
role = "server";
disable = [ disable = [
# Disable - Utilizing Traefik # Disable - Utilizing Traefik
@ -156,27 +135,28 @@
"openebs.io/engine=mayastor" "openebs.io/engine=mayastor"
]; ];
role = "server"; } // lib.optionalAttrs (config.serverAddr != "") {
serverAddr = config.serverAddr; serverAddr = config.serverAddr;
tokenFile = lib.mkIf (config.serverAddr != "") "/etc/rancher/rke2/node-token"; tokenFile = "/etc/rancher/rke2/node-token";
}; };
# Bootstrap Kubernetes Manifests # Bootstrap Kubernetes Manifests
system.activationScripts.k8s-manifests = { # system.activationScripts.k8s-manifests = {
deps = [ ]; # deps = [ ];
text = '' # text = ''
mkdir -p /var/lib/rancher/rke2/server/manifests # mkdir -p /var/lib/rancher/rke2/server/manifests
# Base Configs # # Base Configs
cp ${../k8s/openebs.yaml} /var/lib/rancher/rke2/server/manifests/openebs-base.yaml # cp ${../k8s/openebs.yaml} /var/lib/rancher/rke2/server/manifests/openebs-base.yaml
cp ${../k8s/kasten.yaml} /var/lib/rancher/rke2/server/manifests/kasten-base.yaml # cp ${../k8s/kasten.yaml} /var/lib/rancher/rke2/server/manifests/kasten-base.yaml
# OpenEBS Disk Pool # # OpenEBS Disk Pool
cp ${pkgs.substituteAll { # cp ${pkgs.substituteAll {
src = ../k8s/openebs-disk-pool.yaml; # src = ../k8s/openebs-disk-pool.yaml;
hostName = config.hostName; # hostName = config.hostName;
dataDiskID = config.dataDiskID; # dataDiskID = config.dataDiskID;
}} /var/lib/rancher/rke2/server/manifests/openebs-disk-pool-${config.hostName}.yaml # }} /var/lib/rancher/rke2/server/manifests/openebs-disk-pool-${config.hostName}.yaml
''; # '';
# };
}; };
} }