1
0
Fork 0
mirror of https://git.sr.ht/~goorzhel/turboprop synced 2024-12-14 11:37:37 +00:00
This commit is contained in:
Antonio Gurgel 2023-11-14 22:55:56 -08:00
parent 5c6de22ef1
commit d7ed2e4616
2 changed files with 7 additions and 4 deletions

View file

@ -33,10 +33,10 @@
pkgs = import nixpkgs {
inherit system;
};
kubelib = nix-kube-generators.lib { inherit pkgs; };
kubelib = nix-kube-generators.lib {inherit pkgs;};
in {
packages = {
nfs-kube = (kubelib.buildHelmChart {
nfs-kube = kubelib.buildHelmChart {
name = "nfs-subdir";
chart = "${nfs-helm}/charts/nfs-subdir-external-provisioner";
namespace = "kube-system";
@ -49,7 +49,7 @@
};
storageClass.name = "nfs-subdir";
};
});
};
};
devShell = pkgs.mkShell {
name = "kubernetes-shell";

View file

@ -1,5 +1,8 @@
{kubelib, app-template,...}:
{
kubelib,
app-template,
...
}: {
sota-slack-spotter = kubelib.buildHelmChart {
name = "sota-slack-spotter";
chart = "${app-template}/charts/app-template";