
Scheibe:
/dev/sda
/dev/sdb
/dev/md127
Verknüpfung:https://coreos.com/ignition/docs/latest/examples.html#create-a-raid-enabled-data-volume
Diese Konfiguration richtet ein RAID0-Ext4-Volume (Daten) zwischen zwei separaten Festplatten ein.
Frage: Wie konfiguriere ich Raid10 für 3 Festplatten?
{
"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"
}]
}
}
Ich habe versucht, die folgende Konfiguration zu verwenden. Das Betriebssystem wurde erfolgreich installiert, aber beim ersten Start wird es mit „Ein Startjob für Ignition (Festplatten) läuft“ angehalten.
{
"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: Ich installiere coreos mit PXEBOOT
coreos-install -V current -C beta -c cloud-config.yml -i ignition.yml