Fix markdownlint failures under ./roles/ (#7089)

This fixes markdownlint failures under roles/
This commit is contained in:
Kenichi Omichi
2020-12-30 05:07:49 -08:00
committed by GitHub
parent dc86b2063a
commit 398a995798
12 changed files with 65 additions and 60 deletions

View File

@@ -50,7 +50,7 @@ the rest of this doc will use that path as an example.
Examples to create local storage volumes
----------------------------------------
### tmpfs method:
1. tmpfs method:
``` bash
for vol in vol1 vol2 vol3; do
@@ -62,7 +62,7 @@ done
The tmpfs method is not recommended for production because the mount is not
persistent and data will be deleted on reboot.
### Mount physical disks
1. Mount physical disks
``` bash
mkdir /mnt/disks/ssd1
@@ -72,8 +72,7 @@ mount /dev/vdb1 /mnt/disks/ssd1
Physical disks are recommended for production environments because it offers
complete isolation in terms of I/O and capacity.
### Mount unpartitioned physical devices
1. Mount unpartitioned physical devices
``` bash
for disk in /dev/sdc /dev/sdd /dev/sde; do
@@ -85,7 +84,7 @@ This saves time of precreatnig filesystems. Note that your storageclass must hav
volume_mode set to "Filesystem" and fs_type defined. If either is not set, the
disk will be added as a raw block device.
### File-backed sparsefile method
1. File-backed sparsefile method
``` bash
truncate /mnt/disks/disk5 --size 2G
@@ -97,12 +96,12 @@ mount /mnt/disks/disk5 /mnt/disks/vol5
If you have a development environment and only one disk, this is the best way
to limit the quota of persistent volumes.
### Simple directories
1. Simple directories
In a development environment using `mount --bind` works also, but there is no capacity
management.
### Block volumeMode PVs
1. Block volumeMode PVs
Create a symbolic link under discovery directory to the block device on the node. To use
raw block devices in pods, volume_type should be set to "Block".