From e8daee16971ea97b6e19dc200f6950ad59edb4ef Mon Sep 17 00:00:00 2001 From: Abhinandan Purkait Date: Wed, 29 May 2024 18:12:09 +0530 Subject: [PATCH] Revert "fix: update operator YAML and helm repository URLs" This reverts commit 210b8acc8f8a2cc28b41fc06497e2a89a021a76c. --- docs/intro.md | 4 ++-- docs/tutorial/upgrade.md | 4 ++-- tests/install-localpv.sh | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/intro.md b/docs/intro.md index b92b6c7..880784f 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -19,7 +19,7 @@ Before installing nfs-provisioner make sure your Kubernetes cluster meets the fo ### Install NFS Provisioner through kubectl To install NFS Provisioner through kubectl, run below command: ``` -kubectl apply -f https://openebs-archive.github.io/charts/nfs-operator.yaml +kubectl apply -f https://openebs.github.io/charts/nfs-operator.yaml ``` Above command will install the NFS Provisioner in *openebs* namespace and creates a Storageclass named *openebs-rwx*, with backend Storageclass *openebs-hostpath*. @@ -31,7 +31,7 @@ Above installation will use latest stable release tag. To install a specific rel You can install NFS Provisioner through helm using below command: ``` -helm repo add openebs https://openebs-archive.github.io/charts +helm repo add openebs https://openebs.github.io/charts helm repo update helm install openebs openebs/openebs -n openebs --create-namespace --set nfs-provisioner.enabled=true ``` diff --git a/docs/tutorial/upgrade.md b/docs/tutorial/upgrade.md index aa046f3..8ab1a76 100644 --- a/docs/tutorial/upgrade.md +++ b/docs/tutorial/upgrade.md @@ -28,13 +28,13 @@ helm upgrade nfs openebs-nfs/nfs-provisioner -n openebs --version=/nfs-operator.yaml +kubectl apply -f https://openebs.github.io/charts/versioned//nfs-operator.yaml ``` ## Upgrading NFS server Deployment diff --git a/tests/install-localpv.sh b/tests/install-localpv.sh index d94464f..1254775 100755 --- a/tests/install-localpv.sh +++ b/tests/install-localpv.sh @@ -15,8 +15,8 @@ # limitations under the License. mkdir -p /tmp/openebs -kubectl apply -f https://openebs-archive.github.io/charts/versioned/3.4.0/hostpath-operator.yaml -wget https://openebs-archive.github.io/charts/versioned/3.4.0/openebs-lite-sc.yaml -O /tmp/openebs-lite-sc.yaml +kubectl apply -f https://openebs.github.io/charts/versioned/3.4.0/hostpath-operator.yaml +wget https://openebs.github.io/charts/versioned/3.4.0/openebs-lite-sc.yaml -O /tmp/openebs-lite-sc.yaml sed -i 's/value\: \"\/var\/openebs\/local\/\"/value\: \"\/tmp\/openebs\/\"/' /tmp/openebs-lite-sc.yaml kubectl apply -f /tmp/openebs-lite-sc.yaml