|
|
|
@@ -90,10 +90,10 @@ public class JupyterServiceImpl implements JupyterService { |
|
|
|
|
|
|
|
// 提取数据集,模型信息,得到数据集模型的path |
|
|
|
Map<String, Object> dataset = JacksonUtil.parseJSONStr2Map(devEnvironment.getDataset()); |
|
|
|
String datasetPath = "argo-workflow" + "/" + dataset.get("path"); |
|
|
|
String datasetPath = (String) dataset.get("path"); |
|
|
|
|
|
|
|
Map<String, Object> model = JacksonUtil.parseJSONStr2Map(devEnvironment.getModel()); |
|
|
|
String modelPath = "argo-workflow" + "/" + model.get("path"); |
|
|
|
String modelPath = (String) model.get("path"); |
|
|
|
|
|
|
|
LoginUser loginUser = SecurityUtils.getLoginUser(); |
|
|
|
//构造pod名称 |
|
|
|
|