Skip to content

Commit c7ee10b

Browse files
authored
feat: 增加label-studio的k8s部署卸载 (#206)
1 parent e22f161 commit c7ee10b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,8 @@ VALID_K8S_TARGETS := mineru datamate deer-flow milvus label-studio
332332
helm upgrade deer-flow deployment/helm/deer-flow -n $(NAMESPACE) --install --set global.image.repository=$(REGISTRY); \
333333
elif [ "$*" = "milvus" ]; then \
334334
helm upgrade milvus deployment/helm/milvus -n $(NAMESPACE) --install; \
335+
elif [ "$*" = "label-studio" ]; then \
336+
helm upgrade label-studio deployment/helm/label-studio -n $(NAMESPACE) --install; \
335337
fi
336338

337339
# Generic k8s uninstall target
@@ -353,6 +355,8 @@ VALID_K8S_TARGETS := mineru datamate deer-flow milvus label-studio
353355
helm uninstall deer-flow -n $(NAMESPACE) --ignore-not-found; \
354356
elif [ "$*" = "milvus" ]; then \
355357
helm uninstall milvus -n $(NAMESPACE) --ignore-not-found; \
358+
elif [ "$*" = "label-studio" ]; then \
359+
helm uninstall label-studio -n $(NAMESPACE) --ignore-not-found; \
356360
fi
357361

358362
# ========== Upgrade Targets ==========

0 commit comments

Comments
 (0)