diff --git a/clusters/k3s-dgx/kustomization.yaml b/clusters/k3s-dgx/kustomization.yaml index 5a7ac53..ccbd846 100644 --- a/clusters/k3s-dgx/kustomization.yaml +++ b/clusters/k3s-dgx/kustomization.yaml @@ -2,6 +2,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - flux-system - - gpu-support - - kserve - - apps \ No newline at end of file + # - gpu-support + # - kserve + # - apps diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..466092f --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +{ pkgs ? import {} }: +pkgs.mkShell { + buildInputs = with pkgs; [ + jq + kubectl + k9s + fluxcd + ]; + KUBECONFIG = ./dgx-spark-kubeconfig.yaml; +}