fix: cluster value setting, volumes setting

This commit is contained in:
jialin
2025-09-19 20:00:25 +08:00
parent b640963f65
commit f542ebecb4
27 changed files with 677 additions and 109 deletions
@@ -128,6 +128,9 @@ const ModelFiles = () => {
?.labels?.['worker-name'];
return {
cluster_id: workersList?.find(
(worker) => worker.value === record.worker_id
)?.cluster_id,
source: modelSourceMap.local_path_value,
local_path: record.resolved_paths?.[0],
worker_selector: targetWorker
+8 -5
View File
@@ -1,4 +1,5 @@
import { StatusMaps } from '@/config';
import { ProviderValueMap } from '@/pages/cluster-management/config';
export const WorkerStatusMap = {
ready: 'ready',
@@ -57,16 +58,18 @@ export const addWorkerGuide: Record<string, any> = {
image: string;
workerip: string;
}) {
return `docker run -d --name gpustack \\
return `docker run -d --name gpustack-worker \\
--restart=unless-stopped \\
--gpus all \\
--network=host \\
--ipc=host \\
--privileged \\
--net=host \\
-v gpustack-data:/var/lib/gpustack \\
${params.image} \\
--server-url ${params.server} \\
--registration-token ${params.token} \\
--worker-ip ${params.workerip}`;
},
checkEnvCommand: {
[ProviderValueMap.Docker]: `nvidia-smi >/dev/null 2>&1 && echo "NVIDIA driver OK" || (echo "NVIDIA driver issue"; exit 1) && docker info 2>/dev/null | grep -q "Default Runtime: nvidia" && echo "NVIDIA Container Toolkit OK" || (echo "NVIDIA Container Toolkit not configured"; exit 1)`,
[ProviderValueMap.Kubernetes]: 'k8s env check command'
}
},
npu: {