From fe03187b9cb7ffa8413d5fe634cd0835db641efc Mon Sep 17 00:00:00 2001 From: Nizamudeen A Date: Thu, 5 Oct 2023 09:19:16 +0530 Subject: [PATCH] deps: upgrade the node version to 16 the reasoning for choosing the node 16 is because it supports angular version 12, 13, 14 and 15. We have angular 12 in the pacific Signed-off-by: Nizamudeen A --- scripts/dashboard/install-cephadm-e2e-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dashboard/install-cephadm-e2e-deps.sh b/scripts/dashboard/install-cephadm-e2e-deps.sh index 0db1a89a..7617d4d6 100644 --- a/scripts/dashboard/install-cephadm-e2e-deps.sh +++ b/scripts/dashboard/install-cephadm-e2e-deps.sh @@ -20,7 +20,7 @@ sudo apt update -y sudo apt install -y apt-transport-https ca-certificates curl gnupg lsb-release \ openssh-server software-properties-common -NODEJS_MAJOR_VERSION=14 +NODEJS_MAJOR_VERSION=16 DISTRO="$(lsb_release -cs)" if [[ ! $(command -v node) || $(node --version | grep -oE "v([0-9])+" | cut -c 2-) < ${NODEJS_MAJOR_VERSION} ]]; then sudo add-apt-repository -y -r ppa:chris-lea/node.js -- 2.47.3