Files
kubernetes/pkg/volume
Kubernetes Submit Queue b625085230 Merge pull request #42325 from tsmetana/remove-unused-method-from-og
Automatic merge from submit-queue

Remove unused method from operation_generator

This is only a removal of the GerifyVolumeIsSafeToDetach [sic] method from operation_executor. The method is not called from anywhere, moreover there is a private method named verifyVolumeIsSafeToDetach (which is being used). This looks like a cut&paste mistake that deserves to be cleaned.
```release-note
NONE
```
2017-03-31 10:56:40 -07:00
..
2017-03-02 14:59:59 -05:00
2017-03-02 14:59:59 -05:00
2017-03-02 14:59:59 -05:00
2017-03-02 14:59:59 -05:00
2017-03-02 14:59:59 -05:00
2017-03-02 14:59:59 -05:00
2017-03-02 14:59:59 -05:00
2017-03-02 14:59:59 -05:00
2017-03-02 14:59:59 -05:00
2017-03-02 14:59:59 -05:00
2017-03-09 18:24:37 -05:00
2016-07-16 13:48:21 -04:00
2017-03-02 15:01:59 -08:00
2017-03-02 15:01:59 -08:00
2017-03-02 15:01:59 -08:00
2017-03-02 15:01:59 -08:00
2017-02-27 09:12:15 -05:00
2017-03-02 14:59:59 -05:00

Multipath

To leverage multiple paths for block storage, it is important to perform the multipath configuration on the host. If your distribution does not provide /etc/multipath.conf, then you can either use the following minimalistic one:

defaults {
    find_multipaths yes
    user_friendly_names yes
}

or create a new one by running:

$ mpathconf --enable

Finally you'll need to ensure to start or reload and enable multipath:

$ systemctl enable multipathd.service
$ systemctl restart multipathd.service

Note: Any change to multipath.conf or enabling multipath can lead to inaccessible block devices, because they'll be claimed by multipath and exposed as a device in /dev/mapper/*.

Some additional informations about multipath can be found in the iSCSI documentation