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:
parent
ada288674a
commit
07bd2e1e01
7 changed files with 62 additions and 50 deletions
|
@ -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 = {
|
||||
|
|
Reference in a new issue