chore: format files

This commit is contained in:
technofab 2025-12-18 13:42:14 +01:00
parent 012a3afb2d
commit 471cb8b7b5
Signed by: technofab
SSH key fingerprint: SHA256:bV4h88OqS/AxjbPn66uUdvK9JsgIW4tv3vwJQ8tpMqQ
11 changed files with 48 additions and 54 deletions

View file

@ -10,7 +10,7 @@ with nixlet; {
port = 8080;
}
];
type = values.service.type;
inherit (values.service) type;
};
};
};

View file

@ -7,11 +7,11 @@ with nixlet; {
ports = [
{
name = "mqtt";
port = values.service.port;
inherit (values.service) port;
targetPort = 1883;
}
];
type = values.service.type;
inherit (values.service) type;
};
};
};

View file

@ -7,11 +7,11 @@ with nixlet; {
ports = [
{
name = "tcp";
port = values.service.port;
inherit (values.service) port;
targetPort = 5432;
}
];
type = values.service.type;
inherit (values.service) type;
};
};
};

View file

@ -1,8 +1,4 @@
{
nixlet,
lib,
...
}:
{nixlet, ...}:
with nixlet; {
kubernetes.resources = {
deployments."${values.uniqueName}" = {

View file

@ -8,10 +8,10 @@ with nixlet; {
{
name = "http";
targetPort = "http";
port = values.service.port;
inherit (values.service) port;
}
];
type = values.service.type;
inherit (values.service) type;
};
};
};

View file

@ -10,7 +10,7 @@ with nixlet; {
ports = [
{
name = "pd-server";
port = values.pd.service.port;
inherit (values.pd.service) port;
}
{
name = "peer";
@ -29,7 +29,7 @@ with nixlet; {
ports = [
{
name = "peer";
port = values.tikv.service.port;
inherit (values.tikv.service) port;
}
];
type = "ClusterIP";
@ -44,10 +44,10 @@ with nixlet; {
ports = [
{
name = "server";
port = values.pd.service.port;
inherit (values.pd.service) port;
}
];
type = values.pd.service.type;
inherit (values.pd.service) type;
};
};
};