From dbe7141c64f62325623c1611eaaa47f128d31638 Mon Sep 17 00:00:00 2001 From: Kevin Bates Date: Fri, 9 Sep 2022 16:54:24 -0700 Subject: [PATCH] Prepare release 3.0.0rc0 --- docs/source/operators/deploy-distributed.md | 6 +++--- docs/source/operators/deploy-yarn-cluster.md | 12 ++++++------ etc/docker/docker-compose.yml | 2 +- etc/kubernetes/helm/enterprise-gateway/Chart.yaml | 2 +- etc/kubernetes/helm/enterprise-gateway/values.yaml | 4 ++-- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/source/operators/deploy-distributed.md b/docs/source/operators/deploy-distributed.md index 859d37ee9..b6f97c9d7 100644 --- a/docs/source/operators/deploy-distributed.md +++ b/docs/source/operators/deploy-distributed.md @@ -37,12 +37,12 @@ Entries in the remote hosts configuration should be fully qualified domain names All the kernel *specifications* configured to use the `DistributedProcessProxy` must be on all nodes to which there's a reference in the remote hosts configuration! With YARN cluster node, only the Python and R kernel _packages_ are required on each node, not the entire kernel specification. ``` -The following installs the sample `python_distributed` kernel specification relative to the 3.0.0b0 release on the given node. This step must be repeated for each node and each kernel specification. +The following installs the sample `python_distributed` kernel specification relative to the 3.0.0rc0 release on the given node. This step must be repeated for each node and each kernel specification. ```Bash -wget https://github.com/jupyter-server/enterprise_gateway/releases/download/v3.0.0b0/jupyter_enterprise_gateway_kernelspecs-3.0.0b0.tar.gz +wget https://github.com/jupyter-server/enterprise_gateway/releases/download/v3.0.0rc0/jupyter_enterprise_gateway_kernelspecs-3.0.0rc0.tar.gz KERNELS_FOLDER=/usr/local/share/jupyter/kernels -tar -zxvf jupyter_enterprise_gateway_kernelspecs-3.0.0b0.tar.gz --strip 1 --directory $KERNELS_FOLDER/python_distributed/ python_distributed/ +tar -zxvf jupyter_enterprise_gateway_kernelspecs-3.0.0rc0.tar.gz --strip 1 --directory $KERNELS_FOLDER/python_distributed/ python_distributed/ ``` ```{tip} diff --git a/docs/source/operators/deploy-yarn-cluster.md b/docs/source/operators/deploy-yarn-cluster.md index ad9a77e00..764ba410b 100644 --- a/docs/source/operators/deploy-yarn-cluster.md +++ b/docs/source/operators/deploy-yarn-cluster.md @@ -56,9 +56,9 @@ We recommend installing kernel specifications into a shared folder like `/usr/lo Considering we would like to enable the IPython kernel to run on YARN Cluster and Client mode we would have to copy the sample configuration folder **spark_python_yarn_cluster** to where the Jupyter kernels are installed (e.g. jupyter kernelspec list) ```bash -wget https://github.com/jupyter-server/enterprise_gateway/releases/download/v3.0.0b0/jupyter_enterprise_gateway_kernelspecs-3.0.0b0.tar.gz +wget https://github.com/jupyter-server/enterprise_gateway/releases/download/v3.0.0rc0/jupyter_enterprise_gateway_kernelspecs-3.0.0rc0.tar.gz KERNELS_FOLDER=/usr/local/share/jupyter/kernels -tar -zxvf jupyter_enterprise_gateway_kernelspecs-3.0.0b0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_python_yarn_cluster/ spark_python_yarn_cluster/ +tar -zxvf jupyter_enterprise_gateway_kernelspecs-3.0.0rc0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_python_yarn_cluster/ spark_python_yarn_cluster/ ``` For more information about the IPython kernel, please visit the [IPython kernel](https://ipython.readthedocs.io/en/stable/) page. @@ -68,9 +68,9 @@ For more information about the IPython kernel, please visit the [IPython kernel] Considering we would like to enable the Scala Kernel to run on YARN Cluster and Client mode we would have to copy the sample configuration folder **spark_scala_yarn_cluster** to where the Jupyter kernels are installed (e.g. jupyter kernelspec list) ```bash -wget https://github.com/jupyter-server/enterprise_gateway/releases/download/v3.0.0b0/jupyter_enterprise_gateway_kernelspecs-3.0.0b0.tar.gz +wget https://github.com/jupyter-server/enterprise_gateway/releases/download/v3.0.0rc0/jupyter_enterprise_gateway_kernelspecs-3.0.0rc0.tar.gz KERNELS_FOLDER=/usr/local/share/jupyter/kernels -tar -zxvf jupyter_enterprise_gateway_kernelspecs-3.0.0b0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_scala_yarn_cluster/ spark_scala_yarn_cluster/ +tar -zxvf jupyter_enterprise_gateway_kernelspecs-3.0.0rc0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_scala_yarn_cluster/ spark_scala_yarn_cluster/ ``` For more information about the Scala kernel, please visit the [Apache Toree](https://toree.apache.org/) page. @@ -80,9 +80,9 @@ For more information about the Scala kernel, please visit the [Apache Toree](htt Considering we would like to enable the IRkernel to run on YARN Cluster and Client mode we would have to copy the sample configuration folder **spark_R_yarn_cluster** to where the Jupyter kernels are installed (e.g. jupyter kernelspec list) ```Bash -wget https://github.com/jupyter-server/enterprise_gateway/releases/download/v3.0.0b0/jupyter_enterprise_gateway_kernelspecs-3.0.0b0.tar.gz +wget https://github.com/jupyter-server/enterprise_gateway/releases/download/v3.0.0rc0/jupyter_enterprise_gateway_kernelspecs-3.0.0rc0.tar.gz KERNELS_FOLDER=/usr/local/share/jupyter/kernels -tar -zxvf jupyter_enterprise_gateway_kernelspecs-3.0.0b0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_R_yarn_cluster/ spark_R_yarn_cluster/ +tar -zxvf jupyter_enterprise_gateway_kernelspecs-3.0.0rc0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_R_yarn_cluster/ spark_R_yarn_cluster/ ``` For more information about the iR kernel, please visit the [IRkernel](https://irkernel.github.io/) page. diff --git a/etc/docker/docker-compose.yml b/etc/docker/docker-compose.yml index 5a17c5ae3..adb9afb4c 100644 --- a/etc/docker/docker-compose.yml +++ b/etc/docker/docker-compose.yml @@ -10,7 +10,7 @@ version: "3.5" # 3. We only use one replica since session affinity is another point of investigation in Swarm services: enterprise-gateway: - image: elyra/enterprise-gateway:dev + image: elyra/enterprise-gateway:3.0.0rc0 user: root volumes: - "/var/run/docker.sock:/var/run/docker.sock" diff --git a/etc/kubernetes/helm/enterprise-gateway/Chart.yaml b/etc/kubernetes/helm/enterprise-gateway/Chart.yaml index ad304dda4..ef10ed50d 100644 --- a/etc/kubernetes/helm/enterprise-gateway/Chart.yaml +++ b/etc/kubernetes/helm/enterprise-gateway/Chart.yaml @@ -4,7 +4,7 @@ description: A helm chart to deploy Jupyter Enterprise Gateway # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 3.1.0-dev0-b0 +version: 3.0.0-rc0-dev0-b0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/etc/kubernetes/helm/enterprise-gateway/values.yaml b/etc/kubernetes/helm/enterprise-gateway/values.yaml index e07702820..888d8911d 100644 --- a/etc/kubernetes/helm/enterprise-gateway/values.yaml +++ b/etc/kubernetes/helm/enterprise-gateway/values.yaml @@ -23,7 +23,7 @@ imagePullSecretsCreate: # --set imagePullSecretsCreate.secrets[1].data="UHJvZCBTZWNyZXQgSW5mb3JtYXRpb24K" # Enterprise Gateway image name and tag to use. -image: elyra/enterprise-gateway:dev +image: elyra/enterprise-gateway:3.0.0rc0 # Enterprise Gateway image pull policy. imagePullPolicy: IfNotPresent # K8s Enterprise Gateway Service @@ -138,7 +138,7 @@ kip: create: false annotations: {} # Kernel Image Puller image name and tag to use. - image: elyra/kernel-image-puller:dev + image: elyra/kernel-image-puller:3.0.0rc0 # Kernel Image Puller image pull policy. imagePullPolicy: IfNotPresent # Determines whether the Kernel Image Puller will pull kernel images it has previously pulled