This commit is contained in:
parent
9c162650c6
commit
d3c6b354cd
18
README.md
18
README.md
|
|
@ -90,7 +90,6 @@ sudo systemctl enable iscsid multipathd && sudo systemctl start iscsid multipath
|
||||||
```
|
```
|
||||||
sudo systemctl enable iscsi && sudo systemctl start iscsi
|
sudo systemctl enable iscsi && sudo systemctl start iscsi
|
||||||
```
|
```
|
||||||
___
|
|
||||||
<br/>
|
<br/>
|
||||||
|
|
||||||
 **Ubuntu / Debian**
|
 **Ubuntu / Debian**
|
||||||
|
|
@ -98,17 +97,16 @@ ___
|
||||||
```
|
```
|
||||||
sudo apt-get install -y open-iscsi lsscsi sg3-utils multipath-tools scsitools
|
sudo apt-get install -y open-iscsi lsscsi sg3-utils multipath-tools scsitools
|
||||||
```
|
```
|
||||||
  **Multipathing**
|
**Multipathing**
|
||||||
  `Multipath` is supported for the `iSCSI`-based drivers. Simply setup
|
`Multipath` is supported for the `iSCSI`-based drivers. Simply setup multipath to your liking and set multiple
|
||||||
  multipath to your liking and set multiple
|
portals in the config as appropriate.
|
||||||
  portals in the config as appropriate.
|
|
||||||
|
|
||||||
  *NOTE:* If you are running Kubernetes with Rancher/RKE please see the following:
|
*NOTE:* If you are running Kubernetes with Rancher/RKE please see the following:
|
||||||
  [Support host iscsi simultaneously with kubelet iscsi (pvc)](https://github.com/rancher/rke/issues/1846>)
|
[Support host iscsi simultaneously with kubelet iscsi (pvc)](https://github.com/rancher/rke/issues/1846>)
|
||||||
|
|
||||||
<br/>
|
<br/>
|
||||||
|
|
||||||
  Add the mutlipath configuration:
|
Add the mutlipath configuration:
|
||||||
```
|
```
|
||||||
sudo tee /etc/multipath.conf <<-'EOF'
|
sudo tee /etc/multipath.conf <<-'EOF'
|
||||||
defaults {
|
defaults {
|
||||||
|
|
@ -117,11 +115,11 @@ defaults {
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
```
|
```
|
||||||
  Enable the `multipath-tools` service and restart to load the configuration:
|
Enable the `multipath-tools` service and restart to load the configuration:
|
||||||
```
|
```
|
||||||
sudo systemctl enable multipath-tools && sudo service multipath-tools restart
|
sudo systemctl enable multipath-tools && sudo service multipath-tools restart
|
||||||
```
|
```
|
||||||
  Ensure that `open-iscsi` and `multipath-tools` are enabled and running:
|
Ensure that `open-iscsi` and `multipath-tools` are enabled and running:
|
||||||
```
|
```
|
||||||
sudo systemctl status multipath-tools
|
sudo systemctl status multipath-tools
|
||||||
sudo systemctl enable open-iscsi.service
|
sudo systemctl enable open-iscsi.service
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue