k3s/pkg/volume
Abrar Shivani 50c9cca487 Add support for fstype in Storage Class for vSphere Cloud Provider 2017-04-03 16:13:00 -07:00
..
aws_ebs Merge pull request #41952 from justinsb/curate_volumes_aws_ebs 2017-03-30 16:57:30 -07:00
azure_dd Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
azure_file Merge pull request #42170 from rootfs/azure-file-prv 2017-03-24 19:04:28 -07:00
cephfs Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
cinder Use ProviderID to address nodes in the cloudprovider 2017-03-27 23:13:13 -07:00
configmap Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
downwardapi Merge pull request #41306 from gnufied/implement-interface-bulk-volume-poll 2017-03-03 10:54:38 -08:00
empty_dir Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
fc Merge pull request #36698 from fabiand/no-mpathconf 2017-03-24 10:24:49 -07:00
flexvolume Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
flocker Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
gce_pd Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
git_repo Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
glusterfs Merge pull request #42038 from humblec/glusterfs-backup-vol1 2017-04-03 04:07:19 -07:00
host_path Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
iscsi should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) 2017-03-06 09:14:48 +08:00
nfs Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
photon_pd Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
portworx Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
projected Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
quobyte Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
rbd Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
scaleio Fix spelling of the word successfully 2017-03-22 18:33:11 -05:00
secret Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
testing Merge pull request #42435 from dashpole/timestamps_for_fsstats 2017-03-03 23:21:48 -08:00
util Fix deletion of Gluster volumes 2017-04-03 15:33:56 +02:00
validation Validation PVs for mount options 2017-03-09 18:24:37 -05:00
vsphere_volume Add support for fstype in Storage Class for vSphere Cloud Provider 2017-04-03 16:13:00 -07:00
BUILD Validation PVs for mount options 2017-03-09 18:24:37 -05:00
OWNERS Add gnufied as reviewer for pkg/volume 2017-02-27 09:12:15 -05:00
README.md volume: Document multipath configuration 2017-02-24 09:59:11 +01:00
doc.go
metrics_cached.go
metrics_du.go add volume timestamps 2017-03-02 15:01:59 -08:00
metrics_du_test.go add volume timestamps 2017-03-02 15:01:59 -08:00
metrics_errors.go
metrics_nil.go
metrics_nil_test.go
metrics_statfs.go add volume timestamps 2017-03-02 15:01:59 -08:00
metrics_statfs_test.go add volume timestamps 2017-03-02 15:01:59 -08:00
plugins.go Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
plugins_test.go Impement bulk polling of volumes 2017-03-02 14:59:59 -05:00
util.go Merge pull request #42949 from wenlxie/master 2017-03-16 02:41:11 -07:00
util_test.go Implement support for mount options in PVs 2017-03-01 11:50:40 -05:00
volume.go Merge pull request #42435 from dashpole/timestamps_for_fsstats 2017-03-03 23:21:48 -08:00
volume_linux.go fix permissions when using fsGroup 2016-12-06 14:04:16 -06:00
volume_unsupported.go

README.md

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