mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
9 lines
248 B
Nix
9 lines
248 B
Nix
{kubenix ? import ../../../..}:
|
|
kubenix.evalModules.x86_64-linux {
|
|
module = {kubenix, ...}: {
|
|
imports = with kubenix; [k8s];
|
|
kubernetes.resources.secrets.example.stringData = {
|
|
password = "ref+file:///path/to/secret";
|
|
};
|
|
};
|
|
}
|