start slow

This commit is contained in:
2026-05-05 11:38:28 -05:00
parent f132fc5f0c
commit e0b0e1a711
2 changed files with 13 additions and 3 deletions

View File

@@ -2,6 +2,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
resources: resources:
- flux-system - flux-system
- gpu-support # - gpu-support
- kserve # - kserve
- apps # - apps

10
shell.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
jq
kubectl
k9s
fluxcd
];
KUBECONFIG = ./dgx-spark-kubeconfig.yaml;
}