mirror of
https://git.sr.ht/~goorzhel/turboprop
synced 2024-12-14 11:37:37 +00:00
nix fmt
This commit is contained in:
parent
5c6de22ef1
commit
d7ed2e4616
2 changed files with 7 additions and 4 deletions
|
@ -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";
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue