ingress-nginx-helm/vendor/k8s.io/kubernetes/pkg/volume
Manuel de Brito Fontes 88a2751234 Update go dependencies
2017-04-04 16:11:36 -03:00
..
util Update go dependencies 2017-04-04 16:11:36 -03:00
BUILD Update go dependencies 2017-04-04 16:11:36 -03:00
doc.go Update godeps 2016-11-11 18:22:34 -03:00
metrics_cached.go Update godeps 2016-11-11 18:22:34 -03:00
metrics_du.go Update go dependencies 2017-04-04 16:11:36 -03:00
metrics_errors.go Update godeps 2016-11-11 18:22:34 -03:00
metrics_nil.go Update godeps 2016-11-11 18:22:34 -03:00
metrics_statfs.go Update go dependencies 2017-04-04 16:11:36 -03:00
OWNERS Update go dependencies 2017-04-04 16:11:36 -03:00
plugins.go Update go dependencies 2017-04-04 16:11:36 -03:00
README.md Update go dependencies 2017-04-04 16:11:36 -03:00
util.go Update go dependencies 2017-04-04 16:11:36 -03:00
volume.go Update go dependencies 2017-04-04 16:11:36 -03:00
volume_linux.go Update godeps 2017-01-12 13:40:32 -03:00
volume_unsupported.go Update godeps 2016-11-11 18:22:34 -03: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