Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "fix: update operator YAML and helm repository URLs" #186

Merged
merged 1 commit into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading