From e0b0e1a7112b79a70e6c2407ecd48409c5d40d07 Mon Sep 17 00:00:00 2001 From: HaimKortovich Date: Tue, 5 May 2026 11:38:28 -0500 Subject: [PATCH] start slow --- clusters/k3s-dgx/kustomization.yaml | 6 +++--- shell.nix | 10 ++++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 shell.nix 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; +}