minor updates
This commit is contained in:
parent
6bc8b18f97
commit
dd8d46acce
2 changed files with 19 additions and 3 deletions
|
@ -53,7 +53,7 @@
|
||||||
#};
|
#};
|
||||||
|
|
||||||
# new Zealand overwrites
|
# new Zealand overwrites
|
||||||
services.netdata.enable = lib.mkForce false ;
|
# services.netdata.enable = lib.mkForce false ;
|
||||||
services.SystemdJournal2Gelf.enable = lib.mkForce false;
|
services.SystemdJournal2Gelf.enable = lib.mkForce false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
label= "Dashboard";
|
label= "Dashboard";
|
||||||
href = "http://kruck.private:5656";
|
href = "http://grafana.workhorse.private";
|
||||||
image = "https://media.giphy.com/media/eLmaUW5dJak2k/giphy.gif";
|
image = "https://media.giphy.com/media/eLmaUW5dJak2k/giphy.gif";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
label = "Jenkins";
|
label = "Jenkins";
|
||||||
href = "http://jenkins.schasch.private/";
|
href = "http://jenkins.workhorse.private/";
|
||||||
image = "https://media.giphy.com/media/nQYnLFII2sFcQ/giphy.gif";
|
image = "https://media.giphy.com/media/nQYnLFII2sFcQ/giphy.gif";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
@ -207,6 +207,22 @@
|
||||||
(lib.attrNames config.module.cluster.services.tinc."private".hosts)
|
(lib.attrNames config.module.cluster.services.tinc."private".hosts)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
text = "netdata";
|
||||||
|
items = map (
|
||||||
|
{name, host ? "${name}.private", ... }:
|
||||||
|
{
|
||||||
|
label = name;
|
||||||
|
href = "http://${host}:19999/";
|
||||||
|
image = "https://media.giphy.com/media/BkjdN6MQCDPaw/giphy.gif";
|
||||||
|
}
|
||||||
|
) (
|
||||||
|
map
|
||||||
|
(name: { inherit name; })
|
||||||
|
[ "workhorse" "porani" "sputnik" ]
|
||||||
|
#(lib.attrNames config.module.cluster.services.tinc."private".hosts)
|
||||||
|
);
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};};
|
};};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue