diff options
author | Andrew Butcher <abutcher@afrolegs.com> | 2016-10-20 13:04:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-20 13:04:59 -0400 |
commit | 556e8d290892c212f591b0ef06ea35dd47020783 (patch) | |
tree | fed3bce57bcd86637d2c2a5b74c9bd719caa242e /roles/kube_nfs_volumes | |
parent | 1e943532d3f2ba47cbc028ee05eab683e5ffbc81 (diff) | |
parent | 5bfa7e8da79685e09097d266d6cf453729e704dc (diff) | |
download | openshift-556e8d290892c212f591b0ef06ea35dd47020783.tar.gz openshift-556e8d290892c212f591b0ef06ea35dd47020783.tar.bz2 openshift-556e8d290892c212f591b0ef06ea35dd47020783.tar.xz openshift-556e8d290892c212f591b0ef06ea35dd47020783.zip |
Merge pull request #2623 from rhcarvalho/typos
Fix typos
Diffstat (limited to 'roles/kube_nfs_volumes')
-rw-r--r-- | roles/kube_nfs_volumes/library/partitionpool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/kube_nfs_volumes/library/partitionpool.py b/roles/kube_nfs_volumes/library/partitionpool.py index 1ac8eed4d..9bd3228c1 100644 --- a/roles/kube_nfs_volumes/library/partitionpool.py +++ b/roles/kube_nfs_volumes/library/partitionpool.py @@ -60,7 +60,7 @@ options: - Example 3: size=200G:1,100G:2 says that the ratio of space occupied by 200 GiB partitions and 100GiB partition is 1:2. Therefore, on 1 TiB disk, 1/3 (300 GiB) should be occupied by 200 GiB partitions. Only one fits there, - so only one is created (we always round nr. of partitions *down*). Teh rest + so only one is created (we always round nr. of partitions *down*). The rest (800 GiB) is split into eight 100 GiB partitions, even though it's more than 2/3 of total space - free space is always allocated as much as possible. - size=200G:1,100G:2 = 1x 200 GiB and 8x 100 GiB partitions (on 1 TiB disk). |