From c7ee10b007c26e4a532cc21a12728f45b41527fc Mon Sep 17 00:00:00 2001 From: Dallas98 <40557804+Dallas98@users.noreply.github.com> Date: Tue, 30 Dec 2025 10:26:13 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0label-studio=E7=9A=84?= =?UTF-8?q?k8s=E9=83=A8=E7=BD=B2=E5=8D=B8=E8=BD=BD=20(#206)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 08f3240..2076d2e 100644 --- a/Makefile +++ b/Makefile @@ -332,6 +332,8 @@ VALID_K8S_TARGETS := mineru datamate deer-flow milvus label-studio helm upgrade deer-flow deployment/helm/deer-flow -n $(NAMESPACE) --install --set global.image.repository=$(REGISTRY); \ elif [ "$*" = "milvus" ]; then \ helm upgrade milvus deployment/helm/milvus -n $(NAMESPACE) --install; \ + elif [ "$*" = "label-studio" ]; then \ + helm upgrade label-studio deployment/helm/label-studio -n $(NAMESPACE) --install; \ fi # Generic k8s uninstall target @@ -353,6 +355,8 @@ VALID_K8S_TARGETS := mineru datamate deer-flow milvus label-studio helm uninstall deer-flow -n $(NAMESPACE) --ignore-not-found; \ elif [ "$*" = "milvus" ]; then \ helm uninstall milvus -n $(NAMESPACE) --ignore-not-found; \ + elif [ "$*" = "label-studio" ]; then \ + helm uninstall label-studio -n $(NAMESPACE) --ignore-not-found; \ fi # ========== Upgrade Targets ==========