mirror of
https://github.com/TECHNOFAB11/zfs-localpv.git
synced 2025-12-11 22:10:11 +01:00
chore(doc): add caution notice while running cStor along with kernel zfs (#390)
Signed-off-by: mittachaitu <sai.chaithanya@mayadata.io>
This commit is contained in:
parent
a26b5efbd5
commit
0ef2444eea
1 changed files with 13 additions and 0 deletions
13
README.md
13
README.md
|
|
@ -393,6 +393,19 @@ $ kubectl delete -f pvc.yaml
|
||||||
persistentvolumeclaim "csi-zfspv" deleted
|
persistentvolumeclaim "csi-zfspv" deleted
|
||||||
```
|
```
|
||||||
|
|
||||||
|
<h2 style="color:red;"> CAUTION: </h2>
|
||||||
|
|
||||||
|
Follow below practice while running kernel ZFS along with cStor on the same set of nodes
|
||||||
|
- Disable zfs-import-scan.service service that will avoid importing all pools by scanning all the available devices in the system, disabling scan service will avoid importing pools that are not created by kernel. Disabling scan service will not cause harm since zfs-import-cache.service is enabled and it is the best way to import pools by looking at cache file during boot time.
|
||||||
|
```sh
|
||||||
|
sudo systemctl stop zfs-import-scan.service
|
||||||
|
sudo systemctl disable zfs-import-scan.service
|
||||||
|
```
|
||||||
|
- Always maintain upto date /etc/zfs/zpool.cache while performing operations any day2 operations on zfs pools(zpool set cachefile=/etc/zfs/zpool.cache <pool dataset name>).
|
||||||
|
|
||||||
|
Note: Following above two step kernel ZFS will not import the pools created by cStor
|
||||||
|
|
||||||
|
|
||||||
Features
|
Features
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue