Merge "Change the default configuration value - volume_fstype"

This commit is contained in:
Zuul 2025-03-27 03:25:19 +00:00 committed by Gerrit Code Review
commit fbc0856ab1
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,4 @@
---
fixes:
- |
Default 'volume_fstype' has been changed from 'ext3' to 'ext4'.

View File

@ -219,7 +219,7 @@ common_opts = [
'unreachable'),
cfg.IntOpt('num_tries', default=3,
help='Number of times to check if a volume exists.'),
cfg.StrOpt('volume_fstype', default='ext3',
cfg.StrOpt('volume_fstype', default='ext4',
choices=['ext3', 'ext4', 'xfs'],
help='File system type used to format a volume.'),
cfg.StrOpt('cinder_volume_type', default=None,