rename grafana to monitoring
This commit is contained in:
parent
eafb8ad1b7
commit
1cfe98a204
4 changed files with 42 additions and 32 deletions
|
@ -2,7 +2,7 @@ $ORIGIN noc.eh22.intern.
|
||||||
@ 0 IN SOA auth-dns noc.eh22.easterhegg.eu. 1 7200 3600 3600000 60
|
@ 0 IN SOA auth-dns noc.eh22.easterhegg.eu. 1 7200 3600 3600000 60
|
||||||
@ 0 IN NS 10.20.25.3.
|
@ 0 IN NS 10.20.25.3.
|
||||||
auth-dns 0 IN A 10.20.25.3
|
auth-dns 0 IN A 10.20.25.3
|
||||||
grafana 0 IN A 10.20.25.4
|
monitoring 0 IN A 10.20.25.4
|
||||||
proxmox 0 IN A 10.20.25.1
|
proxmox 0 IN A 10.20.25.1
|
||||||
resolv-dns 0 IN A 10.20.25.5
|
resolv-dns 0 IN A 10.20.25.5
|
||||||
sketchy-router 0 IN A 10.20.25.2
|
sketchy-router 0 IN A 10.20.25.2
|
||||||
|
|
|
@ -43,11 +43,11 @@ in
|
||||||
# prod hosts
|
# prod hosts
|
||||||
"auth-dns.noc.eh22.intern" = mkSystem "x86_64-linux" "auth-dns.noc.eh22.intern";
|
"auth-dns.noc.eh22.intern" = mkSystem "x86_64-linux" "auth-dns.noc.eh22.intern";
|
||||||
"resolv-dns.noc.eh22.intern" = mkSystem "x86_64-linux" "resolv-dns.noc.eh22.intern";
|
"resolv-dns.noc.eh22.intern" = mkSystem "x86_64-linux" "resolv-dns.noc.eh22.intern";
|
||||||
|
"monitoring.noc.eh22.intern" = mkSystem "x86_64-linux" "monitoring.noc.eh22.intern";
|
||||||
|
|
||||||
# staging temp infra
|
# staging temp infra
|
||||||
"sketchy-router.noc.eh22.intern" = mkSystem "x86_64-linux" "sketchy-router.noc.eh22.intern";
|
"sketchy-router.noc.eh22.intern" = mkSystem "x86_64-linux" "sketchy-router.noc.eh22.intern";
|
||||||
|
|
||||||
"grafana.noc.eh22.intern" = mkSystem "x86_64-linux" "grafana.noc.eh22.intern";
|
|
||||||
# misc hosts
|
# misc hosts
|
||||||
"test.eh22.intern" = mkSystem "x86_64-linux" "test.eh22.intern";
|
"test.eh22.intern" = mkSystem "x86_64-linux" "test.eh22.intern";
|
||||||
"installer" = mkSystem "x86_64-linux" "installer";
|
"installer" = mkSystem "x86_64-linux" "installer";
|
||||||
|
|
|
@ -4,32 +4,6 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
imports = [ ];
|
|
||||||
|
|
||||||
sops = {
|
|
||||||
defaultSopsFile = ../secrets/passwords.yaml;
|
|
||||||
secrets."services/grafana/admin_password" = {
|
|
||||||
mode = "0440";
|
|
||||||
owner = "grafana";
|
|
||||||
group = "grafana";
|
|
||||||
restartUnits = [ "grafana.service" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# configure static IP address
|
|
||||||
networking.useDHCP = false;
|
|
||||||
systemd.network = {
|
|
||||||
enable = true;
|
|
||||||
networks = {
|
|
||||||
"10-mgmtNet" = {
|
|
||||||
matchConfig.MACAddress = "BC:24:11:FC:C2:26";
|
|
||||||
address = [ "10.20.25.4/24" ];
|
|
||||||
gateway = [ "10.20.25.2" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 80 ];
|
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
grafana = {
|
grafana = {
|
||||||
|
@ -73,8 +47,4 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
# DO NOT CHANGE
|
|
||||||
# this defines the first version of NixOS that was installed on the machine so that programs with non-migratable data files are kept compatible
|
|
||||||
home-manager.users.noc.home.stateVersion = "24.11";
|
|
||||||
system.stateVersion = "24.11";
|
|
||||||
}
|
}
|
40
systems/monitoring.noc.eh22.intern/system.nix
Normal file
40
systems/monitoring.noc.eh22.intern/system.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ../../secrets/passwords.yaml;
|
||||||
|
secrets."services/grafana/admin_password" = {
|
||||||
|
mode = "0440";
|
||||||
|
owner = "grafana";
|
||||||
|
group = "grafana";
|
||||||
|
restartUnits = [ "grafana.service" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# configure static IP address
|
||||||
|
networking.useDHCP = false;
|
||||||
|
systemd.network = {
|
||||||
|
enable = true;
|
||||||
|
networks = {
|
||||||
|
"10-mgmtNet" = {
|
||||||
|
matchConfig.MACAddress = "BC:24:11:FC:C2:26";
|
||||||
|
address = [ "10.20.25.4/24" ];
|
||||||
|
gateway = [ "10.20.25.2" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./grafana.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
# DO NOT CHANGE
|
||||||
|
# this defines the first version of NixOS that was installed on the machine so that programs with non-migratable data files are kept compatible
|
||||||
|
home-manager.users.noc.home.stateVersion = "24.11";
|
||||||
|
system.stateVersion = "24.11";
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue