Enable backend connection to Minio

This commit is contained in:
Greg Hellings
2024-06-20 22:03:27 -05:00
parent 1d5458c6ad
commit a0bf334052
2 changed files with 41 additions and 2 deletions
+9 -2
View File
@@ -9,6 +9,7 @@
[ # Include the results of the hardware scan.
./ceph.nix
./hardware-configuration.nix
./minio.nix
];
# Bootloader.
@@ -22,6 +23,12 @@
address = " 10.42.1.1";
interface = "enp68s0";
};
vlans = {
san = {
id = 616;
interface = "enp67s0";
};
};
interfaces = {
enp68s0 = {
ipv4.addresses = [ {
@@ -32,10 +39,10 @@
prefixLength = 16;
} ];
};
enp67s0 = {
san = {
ipv4.addresses = [ {
address = "10.201.1.2";
prefixLength = 16;
prefixLength = 24;
} ];
};
};
+32
View File
@@ -0,0 +1,32 @@
{ config, pkgs, ... }:
let
minioPort = 9000;
minioConsolePort = 9001;
in {
environment.systemPackages = with pkgs; [
minio-client
xfsprogs
];
greg.proxies."minio-02.thehellings.lan".target = "http://localhost:9000";
fileSystems."/data/1" = {
device = "/dev/disk/by-id/ata-ST12000NM0558_ZHZ5YSXW-part1";
fsType = "xfs";
};
networking.firewall.allowedTCPPorts = [
minioPort
minioConsolePort
];
age.secrets.minio.file = ../../secrets/minio.age;
services.minio = {
enable = true;
dataDir = [ "/data/1/minio" ];
rootCredentialsFile = config.age.secrets.minio.path;
browser = true;
};
}