This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-2880 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 88f43395ceafeff1f7e5a515625f5f90b7b41ce7 Author: leonidfrolov <[email protected]> AuthorDate: Thu Jul 7 10:08:57 2022 +0300 [DATALAB-2880] removed word notebook from Jupyter template name --- .../src/general/files/aws/jupyter_description.json | 2 +- .../src/general/files/azure/jupyter_description.json | 2 +- .../src/general/files/gcp/jupyter-gpu_description.json | 2 +- .../src/general/files/gcp/jupyter_description.json | 2 +- .../java/com/epam/datalab/backendapi/domain/NotebookTemplate.java | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/infrastructure-provisioning/src/general/files/aws/jupyter_description.json b/infrastructure-provisioning/src/general/files/aws/jupyter_description.json index accfd94a0..37fec7c11 100644 --- a/infrastructure-provisioning/src/general/files/aws/jupyter_description.json +++ b/infrastructure-provisioning/src/general/files/aws/jupyter_description.json @@ -19,7 +19,7 @@ "exploratory_environment_versions" : [ { - "template_name": "Jupyter notebook 6.1.6", + "template_name": "Jupyter 6.1.6", "description": "Base image with Jupyter node creation routines", "environment_type": "exploratory", "version": "jupyter_notebook-6.1.6", diff --git a/infrastructure-provisioning/src/general/files/azure/jupyter_description.json b/infrastructure-provisioning/src/general/files/azure/jupyter_description.json index 33ed45185..4f20f09e8 100644 --- a/infrastructure-provisioning/src/general/files/azure/jupyter_description.json +++ b/infrastructure-provisioning/src/general/files/azure/jupyter_description.json @@ -15,7 +15,7 @@ "exploratory_environment_versions" : [ { - "template_name": "Jupyter notebook 6.1.6", + "template_name": "Jupyter 6.1.6", "description": "Base image with Jupyter node creation routines", "environment_type": "exploratory", "version": "jupyter_notebook-6.1.6", diff --git a/infrastructure-provisioning/src/general/files/gcp/jupyter-gpu_description.json b/infrastructure-provisioning/src/general/files/gcp/jupyter-gpu_description.json index a234823bc..2625fd863 100644 --- a/infrastructure-provisioning/src/general/files/gcp/jupyter-gpu_description.json +++ b/infrastructure-provisioning/src/general/files/gcp/jupyter-gpu_description.json @@ -8,7 +8,7 @@ "exploratory_environment_versions" : [ { - "template_name": "Jupyter notebook 6.1.6 with GPU", + "template_name": "Jupyter 6.1.6 with GPU", "description": "Base image with jupyter node creation routines", "environment_type": "exploratory", "version": "jupyter_notebook_gpu", diff --git a/infrastructure-provisioning/src/general/files/gcp/jupyter_description.json b/infrastructure-provisioning/src/general/files/gcp/jupyter_description.json index 1eafbed28..929f45e59 100644 --- a/infrastructure-provisioning/src/general/files/gcp/jupyter_description.json +++ b/infrastructure-provisioning/src/general/files/gcp/jupyter_description.json @@ -23,7 +23,7 @@ "exploratory_environment_versions" : [ { - "template_name": "Jupyter notebook 6.1.6", + "template_name": "Jupyter 6.1.6", "description": "Base image with jupyter node creation routines", "environment_type": "exploratory", "version": "jupyter_notebook-6.1.6", diff --git a/services/self-service/src/main/java/com/epam/datalab/backendapi/domain/NotebookTemplate.java b/services/self-service/src/main/java/com/epam/datalab/backendapi/domain/NotebookTemplate.java index d0bc1e3bd..a413e5ed9 100644 --- a/services/self-service/src/main/java/com/epam/datalab/backendapi/domain/NotebookTemplate.java +++ b/services/self-service/src/main/java/com/epam/datalab/backendapi/domain/NotebookTemplate.java @@ -25,8 +25,8 @@ import lombok.Getter; @Getter @AllArgsConstructor public enum NotebookTemplate { - JUPYTER("Jupyter notebook 6.1.6"), - JUPYTER_GPU("Jupyter notebook 6.1.6 with GPU"), + JUPYTER("Jupyter 6.1.6"), + JUPYTER_GPU("Jupyter 6.1.6 with GPU"), JUPYTER_LAB("JupyterLab 0.35.6"), ZEPPELIN("Apache Zeppelin 0.9.1"), DEEP_LEARNING("Deep Learning 2.4"), --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
