Skip to content

Commit 09a3ba6

Browse files
committed
multipath: add rw karg for day1 multipathing
Normally, RHCOS automatically adds `rw` to the kernel cmdline after the first boot. But it won't do this if there's already a `root` karg specified. So while it's not necessary for day-2 multipath, for day-1 we do need to explicitly add it. Related: rhbz#2011776
1 parent 3d17f39 commit 09a3ba6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

modules/rhcos-enabling-multipath.adoc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ $ mpathconf --enable && systemctl start multipathd.service
4343
----
4444
$ coreos-installer install /dev/mapper/mpatha \ <1>
4545
--append-karg rd.multipath=default \
46-
--append-karg root=/dev/disk/by-label/dm-mpath-root
46+
--append-karg root=/dev/disk/by-label/dm-mpath-root \
47+
--append-karg rw
4748
----
4849
<1> Indicates the path of the single multipathed device.
4950
+
@@ -53,7 +54,8 @@ $ coreos-installer install /dev/mapper/mpatha \ <1>
5354
----
5455
$ coreos-installer install /dev/disk/by-id/wwn-<wwn_ID> \ <1>
5556
--append-karg rd.multipath=default \
56-
--append-karg root=/dev/disk/by-label/dm-mpath-root
57+
--append-karg root=/dev/disk/by-label/dm-mpath-root \
58+
--append-karg rw
5759
----
5860
<1> Indicates the WWN ID of the target multipathed device. For example, `0xx194e957fcedb4841`.
5961
+

0 commit comments

Comments
 (0)