Skip to content

Commit 7836bbb

Browse files
authored
Merge pull request #186 from openebs-archive/revert_doc_change
Revert "fix: update operator YAML and helm repository URLs"
2 parents 210b8ac + e8daee1 commit 7836bbb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Before installing nfs-provisioner make sure your Kubernetes cluster meets the fo
1919
### Install NFS Provisioner through kubectl
2020
To install NFS Provisioner through kubectl, run below command:
2121
```
22-
kubectl apply -f https://openebs-archive.github.io/charts/nfs-operator.yaml
22+
kubectl apply -f https://openebs.github.io/charts/nfs-operator.yaml
2323
```
2424

2525
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
3131
You can install NFS Provisioner through helm using below command:
3232

3333
```
34-
helm repo add openebs https://openebs-archive.github.io/charts
34+
helm repo add openebs https://openebs.github.io/charts
3535
helm repo update
3636
helm install openebs openebs/openebs -n openebs --create-namespace --set nfs-provisioner.enabled=true
3737
```

docs/tutorial/upgrade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ helm upgrade nfs openebs-nfs/nfs-provisioner -n openebs --version=<DESIRED_VER
2828
If you have installed the nfs-provisioner through kubectl, then you can upgrade the nfs-provisioner deployment to latest version by running the below command:
2929

3030
```bash
31-
kubectl apply -f https://openebs-archive.github.io/charts/nfs-operator.yaml
31+
kubectl apply -f https://openebs.github.io/charts/nfs-operator.yaml
3232
```
3333

3434
Above command will upgrade the nfs-provisioner to latest version. You can also upgrade to specific version by running the below command:
3535

3636
```bash
37-
kubectl apply -f https://openebs-archive.github.io/charts/versioned/<OPENEBS VERSION>/nfs-operator.yaml
37+
kubectl apply -f https://openebs.github.io/charts/versioned/<OPENEBS VERSION>/nfs-operator.yaml
3838
```
3939

4040
## Upgrading NFS server Deployment

tests/install-localpv.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
# limitations under the License.
1616

1717
mkdir -p /tmp/openebs
18-
kubectl apply -f https://openebs-archive.github.io/charts/versioned/3.4.0/hostpath-operator.yaml
19-
wget https://openebs-archive.github.io/charts/versioned/3.4.0/openebs-lite-sc.yaml -O /tmp/openebs-lite-sc.yaml
18+
kubectl apply -f https://openebs.github.io/charts/versioned/3.4.0/hostpath-operator.yaml
19+
wget https://openebs.github.io/charts/versioned/3.4.0/openebs-lite-sc.yaml -O /tmp/openebs-lite-sc.yaml
2020
sed -i 's/value\: \"\/var\/openebs\/local\/\"/value\: \"\/tmp\/openebs\/\"/' /tmp/openebs-lite-sc.yaml
2121
kubectl apply -f /tmp/openebs-lite-sc.yaml
2222

0 commit comments

Comments
 (0)