feat(freshrss): Move to its own namespace

feat(longhorn): Add ability to specify PVC namespace
refactor(freshrss): Simplify env variable declaration
This commit is contained in:
Pim Kunis 2024-07-14 11:47:46 +02:00
parent ada288674a
commit 07bd2e1e01
7 changed files with 62 additions and 50 deletions

View file

@ -5,6 +5,11 @@ let
storage = lib.mkOption {
type = lib.types.str;
};
namespace = lib.mkOption {
type = lib.types.str;
default = "default";
};
};
};
in
@ -28,7 +33,7 @@ in
claimRef = {
inherit name;
namespace = "default";
namespace = longhornVolume.namespace;
};
csi = {