too lazy to think of a message, so enjoy this pointless text. Good luck future me...

This commit is contained in:
Chris Kruining 2025-09-25 08:27:43 +00:00
parent 72c0dbe541
commit f41d661cd3

View file

@ -30,12 +30,58 @@ in
Temporary option till I figure out something useful Temporary option till I figure out something useful
''; '';
}; };
crossplane.resources.composite = mkOption {
type = with types; listOf (either path attrs);
default = [];
example = lib.literalExpression ''
[
../manifests/my-composite-resource.yml
{
apiVersion = "v1";
kind = "CompositeResourceDefinition";
metadata = {
name = "app-service";
};
spec = {
selector = {
"app.kubernetes.io/name" = "MyApp";
};
ports = [
{
name = "name-of-service-port";
protocol = "TCP";
port = 80;
targetPort = "http-web-svc";
}
];
};
}
];
'';
description = ''
Temporary option till I figure out something useful
'';
};
# crossplane.resources.managed = mkOption {
# type = with types; listOf (either path attrs);
# default = [];
# example = lib.literalExpression ''
# [
# ../manifests/my-managed-resource.yml
# ];
# '';
# description = ''
# Temporary option till I figure out something useful
# '';
# };
}; };
}; };
perInstance = { instanceName, settings, machine, roles, ... }: { perInstance = { instanceName, settings, machine, roles, ... }: {
nixosModule = { config, pkgs, ... }: { nixosModule = { config, pkgs, ... }: {
environment.systemPackages = with pkgs; [ k9s ]; environment.systemPackages = with pkgs; [ k9s linkerd ];
clan.core.vars.generators.k3s = { clan.core.vars.generators.k3s = {
share = false; share = false;
@ -115,6 +161,8 @@ in
deploymentStrategy = "RollingUpdate"; deploymentStrategy = "RollingUpdate";
}; };
extraDeploy = settings.crossplane.resources.composite;
}; };
}; };
}; };