nix-config/hq.nixops

132 lines
2.4 KiB
Plaintext
Raw Normal View History

2019-04-01 03:10:31 +02:00
{
network.description = "C3D2 HQ";
"grafana" =
{ ... }:
{
imports = [
hosts/containers/grafana/configuration.nix
2019-04-01 03:10:31 +02:00
];
2019-04-02 16:44:40 +02:00
deployment = {
targetHost = "grafana.hq.c3d2.de";
storeKeysOnMachine = true;
};
2019-04-01 03:10:31 +02:00
};
"dhcp" =
{ ... }:
{
imports = [
hosts/containers/dhcp/configuration.nix
2019-04-01 03:10:31 +02:00
];
2019-04-02 16:44:40 +02:00
deployment = {
targetHost = "2a02:8106:208:5201:3801:15ff:fe95:8988";
storeKeysOnMachine = true;
};
2019-04-01 03:10:31 +02:00
};
2019-04-07 00:58:42 +02:00
"mucbot" =
{ ... }:
{
imports = [
hosts/containers/mucbot/configuration.nix
2019-04-07 00:58:42 +02:00
];
deployment = {
targetHost = "2a02:8106:208:5201:28db:dff:fe6b:e89a";
storeKeysOnMachine = true;
};
};
2019-04-13 20:02:18 +02:00
2019-07-03 20:17:45 +02:00
"mpd-index" =
2019-04-13 20:02:18 +02:00
{ ... }:
{
imports = [
hosts/containers/mpd-index/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5201:5ca3:f7ff:fe6d:dcf0";
storeKeysOnMachine = true;
};
};
"public-access-proxy" =
{ ... }:
{
imports = [
hosts/containers/public-access-proxy/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5201:1024:5fff:febd:9be7";
storeKeysOnMachine = true;
};
};
2019-07-03 20:17:45 +02:00
"elastic1" =
{ ... }:
{
imports = [
hosts/containers/elastic/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5282:e0d5:d8ff:fe54:586c";
storeKeysOnMachine = true;
};
};
"logging" =
{ ... }:
{
imports = [
hosts/containers/logging/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5282:6811:edff:fe40:89c6";
storeKeysOnMachine = true;
};
};
"storage-ng" =
{ ... }:
{
imports = [
hosts/storage-ng/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5201::20";
storeKeysOnMachine = true;
};
};
2019-07-04 00:31:45 +02:00
"mongo" =
{ ... }:
{
imports = [
hosts/containers/mongo/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5282:14ec:c8ff:fe0a:fc5c";
storeKeysOnMachine = true;
};
};
"registry" =
{ ... }:
{
imports = [
hosts/containers/registry/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5201::34";
storeKeysOnMachine = true;
};
};
"prometheus" =
{ ... }:
{
imports = [
hosts/containers/prometheus/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5282:8c46:d6ff:fe43:6afd";
storeKeysOnMachine = true;
};
};
2019-07-04 00:31:45 +02:00
2019-04-01 03:10:31 +02:00
}