You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/faq.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,9 @@ You need to have necessary privileges and permissions to perform installation. G
18
18
### After upgrading DirectPV to v4.x.x, I do not find `direct-csi-min-io` storage class. Why?
19
19
Legacy DirectCSI is deprecated including storage class `direct-csi-min-io` and it is no longer supported. Previously created volumes continue to work normally. For new volume requests, use the `directpv-min-io` storage class.
20
20
21
+
### DirectPV installation fails with error message like _Error; unable to get legacy drives; conversion webhook for direct.csi.min.io/v1beta3, ..._ or similar. Why?
22
+
Installing DirectPV also tries to upgrade legacy DirectCSI. Upgrading DirectCSI older than v3.1.0 requires _Conversion webhook_ service running. For appropriate upgrade process, refer [this documentation](./upgrade.md#upgrade-legacy-directcsi-csi-driver)
23
+
21
24
### In the YAML output of `discover` command, I do not find my storage drive(s). Why?
22
25
DirectPV ignores drives that meet any of the below conditions:
Copy file name to clipboardExpand all lines: docs/upgrade.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,14 +21,18 @@ Follow the below steps for an in-place upgrade
21
21
$ curl -sfL https://github.com/minio/directpv/raw/master/docs/tools/install.sh | sh - apply
22
22
```
23
23
24
-
### Upgrade legacy DirectCSI CSI driver v3.x.x and v2.0.9
24
+
### Upgrade legacy DirectCSI CSI driver
25
25
Follow the below steps to upgrade to the latest DirectPV CSI driver from a legacy DirectCSI installation.
26
-
1. Uninstall legacy DirectCSI CSI driver.
26
+
1. Uninstall DirectCSI driver if you run v3.1.0 or newer version. For other versions, skip this step.
27
27
```sh
28
28
$ kubectl directcsi uninstall
29
29
```
30
30
2. Install the latest DirectPV plugin by [this documentation](./installation.md#directpv-plugin-installation) or upgrade existing DirectPV plugin by [this documentation](#upgrade-directpv-plugin).
31
31
3. Install the latest DirectPV CSI driver by [this documentation](./installation.md#directpv-csi-driver-installation).
32
+
4. Uninstall DirectCSI driver if you run older than v3.1.0 version. For other versions, skip this step.
0 commit comments