this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(registry): output manifest into file instead of directory

+1 -2
+1 -2
infra/_modules/nixos/profiles/k3s-addons.nix
··· 34 34 source = pkgs.runCommand "registry-install-manifest" { 35 35 nativeBuildInputs = [ pkgs.kubernetes-helm ]; 36 36 } '' 37 - mkdir -p $out 38 37 helm template --skip-tests registry ${ 39 38 pkgs.fetchurl { 40 39 url = "https://github.com/project-zot/helm-charts/releases/download/zot-0.1.67/zot-0.1.67.tgz"; ··· 42 41 } 43 42 } \ 44 43 --namespace registry \ 45 - --values ${./values/registry.yaml} > $out/registry.yaml 44 + --values ${./values/registry.yaml} > $out 46 45 ''; 47 46 }; 48 47 gateway-api = {