
Диск:
/dev/sda
/dev/sdb
/dev/md127
Связь:https://coreos.com/ignition/docs/latest/examples.html#create-a-raid-enabled-data-volume
Эта конфигурация создаст том RAID0 ext4 с данными между двумя отдельными дисками.
Вопрос: Как настроить raid10 для 3 дисков?
{
"ignition": { "version": "2.0.0" },
"storage": {
"disks": [
{
"device": "/dev/sda",
"wipeTable": true,
"partitions": [{
"label": "raid.1.1",
"number": 1,
"size": 20480,
"start": 0
}]
},
{
"device": "/dev/sdb",
"wipeTable": true,
"partitions": [{
"label": "raid.1.2",
"number": 1,
"size": 20480,
"start": 0
}]
}
],
"raid": [{
"devices": [
"/dev/disk/by-partlabel/raid.1.1",
"/dev/disk/by-partlabel/raid.1.2"
],
"level": "stripe",
"name": "data"
}],
"filesystems": [{
"mount": {
"device": "/dev/md/data",
"format": "ext4",
"create": { "options": [ "-L", "DATA" ] }
}
}]
},
"systemd": {
"units": [{
"name": "var-lib-data.mount",
"enable": true,
"contents": "[Mount]\nWhat=/dev/md/data\nWhere=/var/lib/data\nType=ext4\n\n[Install]\nWantedBy=local-fs.target"
}]
}
}
Я попробовал использовать следующую конфигурацию. ОС успешно установилась, но во время первой загрузки она остановилась на "Выполняется задание запуска для зажигания(дисков)"
{
"ignition": { "version": "2.0.0" },
"storage": {
"disks": [
{
"device": "/dev/sda",
"wipeTable": true,
"partitions": [{
"label": "raid.1.1",
"number": 1,
"start": 0
}]
},
{
"device": "/dev/sdb",
"wipeTable": true,
"partitions": [{
"label": "raid.1.2",
"number": 1,
"start": 0
}]
},
{
"device": "/dev/md127",
"wipeTable": true,
"partitions": [{
"label": "raid.1.3",
"number": 1,
"start": 0
}]
}
],
"raid": [{
"devices": [
"/dev/disk/by-partlabel/raid.1.1",
"/dev/disk/by-partlabel/raid.1.2",
"/dev/disk/by-partlabel/raid.1.3"
],
"level": "raid10",
"name": "data"
}],
"filesystems": [{
"mount": {
"device": "/dev/md/data",
"format": "ext4",
"create": { "options": [ "-L", "DATA" ] }
}
}]
},
"systemd": {
"units": [{
"name": "var-lib-data.mount",
"enable": true,
"contents": "[Mount]\nWhat=/dev/md/data\nWhere=/var/lib/data\nType=ext4\n\n[Install]\nWantedBy=local-fs.target"
}]
}
}
PS: Я устанавливаю Coreos с помощью PXEBOOT
coreos-install -V current -C beta -c cloud-config.yml -i ignition.yml