From 37b346b36e0eb1d91fa58382b7017b3d52f6c2ad Mon Sep 17 00:00:00 2001 From: venkatmanavarthi Date: Tue, 28 May 2024 11:14:29 -0500 Subject: [PATCH] Fix for the openebs issue --- installers/install_cluster_addons.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/install_cluster_addons.sh b/installers/install_cluster_addons.sh index 245ff266..92b9f53c 100755 --- a/installers/install_cluster_addons.sh +++ b/installers/install_cluster_addons.sh @@ -20,7 +20,7 @@ function install_k8s_storageclass() { # Openebs versions can be found here: https://github.com/openebs/openebs/releases OPENEBS_VERSION="3.7.0" echo "Installing OpenEBS" - helm repo add openebs https://openebs.github.io/charts + helm repo add openebs https://github.com/openebs-archive/charts helm repo update helm install --create-namespace --namespace openebs openebs openebs/openebs --version ${OPENEBS_VERSION} helm ls -n openebs -- GitLab