modulus
modulus copied to clipboard
Automatically compile kernel modules for Flatcar Linux / CoreOS Container Linux
modulus
Automatically compile kernel modules for Flatcar Linux.
Installation
To deploy Modulus to a Kubernetes cluster to install and maintain NVIDIA GPU drivers, run:
kubectl apply -f https://raw.githubusercontent.com/squat/modulus/main/nvidia/daemonset.yaml
Background
Compiling drivers on Flatcar Linux is typically non-trivial because the OS ships without build tools and no obvious way to access the kernel sources. Modulus works by compiling your kernel modules inside of a Flatcar Linux developer Flatcar as documented in [1] and used in [2]. Furthermore, because Flatcar Linux updates automatically to keep your machine secure, your kernel modules can easily become out of date. Modulus automatically compiles kernel modules for the new version of Flatcar Linux when your OS is upgrading so that the new modules are available when your machine restarts. Modulus can be used as a Kubernetes DaemonSet to maintain worker nodes up to date or as a systemd template unit and can be coupled with any script that compiles kernel modules. This project currently supports generating NVIDIA and WireGuard kernel modules, however it can be extended to support any module.
[1] https://github.com/coreos/docs/blob/master/os/kernel-modules.md
[2] https://github.com/Clarifai/coreos-nvidia
Compiling NVIDIA Kernel Modules
Modulus makes it easy to automatically compile kernel modules for NVIDIA GPUs. See the NVIDIA README for detailed instructions.
Compiling WireGuard Kernel Modules
See the WireGuard README for detailed instructions.
Distribution
After compiliation, Modulus installs all the compiled assets and caches them on disk. Modulus also automatically tries to upload your compiled kernel modules to S3 so that you can compile the drivers once and reuse them across multiple machines. To enable this functionality, provide the following environment variables to the Modulus DaemonSet:
AWS_ACCESS_KEY_ID=<your-aws-access-key-id>
AWS_SECRET_ACCESS_KEY=<your-aws-secret-access-key>
MODULUS_S3_BUCKET=s3://your.s3/bucket-name/
Systemd Installation
Modulus can also be used as a set of Systemd services without depending on Kubernetes:
sudo git clone https://github.com/squat/modulus.git /opt/modulus
sudo cp /opt/modulus/[email protected] /etc/systemd/system/[email protected]