mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 08:00:06 +01:00
16 lines
386 B
Nix
16 lines
386 B
Nix
{evalModules}:
|
|
(evalModules {
|
|
module = {kubenix, ...}: {
|
|
imports = with kubenix.modules; [helm];
|
|
kubernetes.helm.instances.example = {
|
|
chart = kubenix.lib.helm.fetch {
|
|
chart = "nginx";
|
|
repo = "https://charts.bitnami.com/bitnami";
|
|
sha256 = "sha256-wP3tcBnySx+kvZqfW2W9k665oi8KOI50tCcAl0g9cuw=";
|
|
};
|
|
};
|
|
};
|
|
})
|
|
.config
|
|
.kubernetes
|
|
.result
|