feat: 增加label-studio的k8s部署卸载 (#206)

This commit is contained in:
Dallas98
2025-12-30 10:26:13 +08:00
committed by GitHub
parent e22f16166c
commit c7ee10b007

View File

@@ -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 ==========