Skip to content

Commit 104ebeb

Browse files
committed
docs: crd install skip flag
Signed-off-by: Bala Harish <[email protected]>
1 parent 11e7478 commit 104ebeb

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

docs/main/quickstart-guide/installation.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,17 @@ helm install openebs --namespace openebs openebs/openebs --create-namespace
8181
The above command will install OpenEBS Local PV Hostpath, OpenEBS Local PV LVM, OpenEBS Local PV ZFS, and OpenEBS Replicated Storage components in `openebs` namespace and chart name as `openebs`.
8282

8383
:::important
84-
The default OpenEBS helm chart will install both Local Storage and Replicated Storage. If you do not want to install OpenEBS Replicated Storage, use the following command:
84+
- The default OpenEBS helm chart will install both Local Storage and Replicated Storage. If you do not want to install OpenEBS Replicated Storage, use the following command:
8585

86-
```
87-
helm install openebs --namespace openebs openebs/openebs --set engines.replicated.mayastor.enabled=false --create-namespace
88-
```
86+
```
87+
helm install openebs --namespace openebs openebs/openebs --set engines.replicated.mayastor.enabled=false --create-namespace
88+
```
89+
90+
- If the CustomResourceDefinitions for CSI VolumeSnapshots are already present in your cluster, you may skip their creation by using the following command:
91+
92+
```
93+
--set openebs-crds.csi.volumeSnapshots.enabled=false
94+
```
8995
:::
9096

9197
If you are utilizing a custom Kubelet location or a Kubernetes distribution that uses a custom Kubelet location, it is necessary to modify the Kubelet directory in the Helm values at installation time. This can be accomplished by using the `--set` flag option in the Helm install command, as follows:

docs/versioned_docs/version-4.1.x/quickstart-guide/installation.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,18 @@ helm install openebs --namespace openebs openebs/openebs --create-namespace
7474

7575
The above commands will install OpenEBS Local PV Hostpath, OpenEBS Local PV LVM, OpenEBS Local PV ZFS, and OpenEBS Replicated Storage components in `openebs` namespace and chart name as `openebs`.
7676

77-
:::note
78-
The default OpenEBS helm chart will install both Local Storage and Replicated Storage. If you do not want to install OpenEBS Replicated Storage, use the following command:
77+
:::important
78+
- The default OpenEBS helm chart will install both Local Storage and Replicated Storage. If you do not want to install OpenEBS Replicated Storage, use the following command:
7979

80-
```
81-
helm install openebs --namespace openebs openebs/openebs --set engines.replicated.mayastor.enabled=false --create-namespace
82-
```
80+
```
81+
helm install openebs --namespace openebs openebs/openebs --set engines.replicated.mayastor.enabled=false --create-namespace
82+
```
83+
84+
- If the CustomResourceDefinitions for CSI VolumeSnapshots are already present in your cluster, you may skip their creation by using the following command:
85+
86+
```
87+
--set openebs-crds.csi.volumeSnapshots.enabled=false
88+
```
8389
:::
8490

8591
3. To view the chart and get the output, use the following commands:

0 commit comments

Comments
 (0)