nix-config/hq.nixops

119 lines
2.3 KiB
Plaintext
Raw Normal View History

2019-04-01 03:10:31 +02:00
{
network.description = "C3D2 HQ";
2019-04-07 00:58:42 +02:00
"mucbot" =
{ ... }:
{
imports = [
hosts/containers/mucbot/configuration.nix
2019-04-07 00:58:42 +02:00
];
deployment = {
2021-06-02 21:37:18 +02:00
targetHost = "2a00:8180:2c00:282:28db:dff:fe6b:e89a";
2019-04-07 00:58:42 +02:00
storeKeysOnMachine = true;
};
};
2019-04-13 20:02:18 +02:00
"public-access-proxy" =
{ ... }:
{
imports = [
hosts/containers/public-access-proxy/configuration.nix
];
deployment = {
targetHost = "172.20.73.45";
storeKeysOnMachine = true;
};
};
2019-07-03 20:17:45 +02:00
"elastic1" =
{ ... }:
{
imports = [
hosts/containers/elastic/configuration.nix
];
deployment = {
2021-06-02 21:37:18 +02:00
targetHost = "2a00:8180:2c00:282:e0d5:d8ff:fe54:586c";
2019-07-03 20:17:45 +02:00
storeKeysOnMachine = true;
};
};
"logging" =
{ ... }:
{
imports = [
hosts/containers/logging/configuration.nix
];
deployment = {
2021-06-02 21:37:18 +02:00
targetHost = "2a00:8180:2c00:282:6811:edff:fe40:89c6";
2019-07-03 20:17:45 +02:00
storeKeysOnMachine = true;
};
};
"storage-ng" =
{ ... }:
{
imports = [
hosts/storage-ng/configuration.nix
];
deployment = {
2021-06-02 21:37:18 +02:00
targetHost = "2a00:8180:2c00:223::20";
2019-07-03 20:17:45 +02:00
storeKeysOnMachine = true;
};
};
2019-07-04 00:31:45 +02:00
"mongo" =
{ ... }:
{
imports = [
hosts/containers/mongo/configuration.nix
];
deployment = {
2021-06-02 21:37:18 +02:00
targetHost = "2a00:8180:2c00:282:5038:2aff:feba:7d3b";
2019-07-04 00:31:45 +02:00
storeKeysOnMachine = true;
};
};
"registry" =
{ ... }:
{
imports = [
hosts/containers/registry/configuration.nix
];
deployment = {
2021-06-02 21:37:18 +02:00
targetHost = "2a00:8180:2c00:223::34";
storeKeysOnMachine = true;
};
};
"prometheus" =
{ ... }:
{
imports = [
hosts/containers/prometheus/configuration.nix
];
deployment = {
2021-06-02 21:37:18 +02:00
targetHost = "2a00:8180:2c00:282:8c46:d6ff:fe43:6afd";
storeKeysOnMachine = true;
};
};
2019-09-10 22:05:03 +02:00
"spaceapi" =
{ ... }:
{
imports = [
hosts/containers/spaceapi/configuration.nix
];
deployment = {
2021-06-02 21:37:18 +02:00
targetHost = "2a00:8180:2c00:282:1457:adff:fe93:62e9";
2019-09-10 22:05:03 +02:00
storeKeysOnMachine = true;
};
};
2019-07-04 00:31:45 +02:00
# Run with:
# -I nixpkgs=https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz
2019-11-02 21:25:13 +01:00
"dnscache" = {
imports = [
hosts/containers/dnscache/configuration.nix
];
deployment = {
targetHost = "dnscache.serv.zentralwerk.org";
storeKeysOnMachine = true;
};
};
2019-04-01 03:10:31 +02:00
}