mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 08:00:06 +01:00
9 lines
263 B
Nix
9 lines
263 B
Nix
{kubenix ? import ../../../..}:
|
|
kubenix.evalModules.${builtins.currentSystem} {
|
|
module = {kubenix, ...}: {
|
|
imports = [kubenix.modules.k8s];
|
|
kubernetes.resources.secrets.example.stringData = {
|
|
password = "ref+file:///path/to/secret";
|
|
};
|
|
};
|
|
}
|