diff options
author | Mike Gerdts <mike.gerdts@joyent.com> | 2018-04-18 13:14:31 -0400 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2018-04-18 13:14:31 -0400 |
commit | 025ddc0329d9314f131cea35075734916797b439 (patch) | |
tree | 277bef2c6290fa1113d89a63c0d2467f133a7b7e /cloudinit | |
parent | acca826adf39ddfedde78cfbfc47e81a06c6f42a (diff) | |
download | vyos-cloud-init-025ddc0329d9314f131cea35075734916797b439.tar.gz vyos-cloud-init-025ddc0329d9314f131cea35075734916797b439.zip |
DataSourceSmartOS: change default fs on ephemeral disk from ext3 to ext4.
ext3 is not able to support file system sizes that are needed in Joyent's
cloud. For the default block size of 4k, the maximum filesystem size
for ext3 is 2^32 * 4096 = 16 TiB.
This changes the default file system type from ext3 to ext4.
LP: #1763511
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/sources/DataSourceSmartOS.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceSmartOS.py b/cloudinit/sources/DataSourceSmartOS.py index 86bfa5d8..5dd8a125 100644 --- a/cloudinit/sources/DataSourceSmartOS.py +++ b/cloudinit/sources/DataSourceSmartOS.py @@ -108,7 +108,7 @@ BUILTIN_CLOUD_CONFIG = { 'overwrite': False} }, 'fs_setup': [{'label': 'ephemeral0', - 'filesystem': 'ext3', + 'filesystem': 'ext4', 'device': 'ephemeral0'}], } |