Skip to content

Commit

Permalink
Merge pull request #186 from openebs-archive/revert_doc_change
Browse files Browse the repository at this point in the history
Revert "fix: update operator YAML and helm repository URLs"
  • Loading branch information
avishnu authored May 29, 2024
2 parents 210b8ac + e8daee1 commit 7836bbb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -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*.
Expand All @@ -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
```
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorial/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ helm upgrade nfs openebs-nfs/nfs-provisioner -n openebs --version=<DESIRED_VER
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:

```bash
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 upgrade the nfs-provisioner to latest version. You can also upgrade to specific version by running the below command:

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

## Upgrading NFS server Deployment
Expand Down
4 changes: 2 additions & 2 deletions tests/install-localpv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7836bbb

Please sign in to comment.