我想在Cloud-init配置文件中指定一些mkfs.ext4选项,如保留块-百分比=0,但没有找到可能的选项。已经有人试过了吗?
这里是文件的一部分,这是磁盘上的直接文件系统(VMware):
# disk 2
- type: disk
id: opt-disk
ptable: gpt
path: /dev/sdb
preserve: false
- id: opt-format
type: format
fstype: ext4
volume: opt-disk
- id: opt-mount
type: mount
path: /opt
device: opt-format
有像fsoptions: xxx
这样的东西的属性吗?谢谢
1条答案
按热度按时间soat7uwm1#
在Cloud-init上创建文件系统的文档在这里,请参见
fs_setup
键。但是,您的示例密钥不喜欢
cloud-init
密钥。你确定你说的是专门针对Cloud-init的吗?或者您可能正在询问somethingelse?