Skip to content

Commit d9a235e

Browse files
author
Adrian Kosmaczewski
committed
Added troubleshooting section in README for users of Btrfs-on-LUKS
1 parent 8dee057 commit d9a235e

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

README.adoc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,20 @@ The `0_requirements.sh` script shows the current versions of all required softwa
1515
== Build PDF
1616

1717
Use the `make pdf` command to create a PDF file out of the source Asciidoc file in the `build` folder. This operation requires Docker.
18+
19+
== Troubleshooting
20+
21+
Some users of Btrfs-on-LUKS have experimented issues with the tutorial. You might want to perform the following changes in that case.
22+
23+
. In `1_lieutenant_on_minikube.sh`, line 12, use the following command to start Minikube: `minikube start --disk-size 60g --cpus 4 --feature-gates="LocalStorageCapacityIsolation=false"`
24+
. In `4_synthesize_on_k3s.sh`, replace line 22 `k3d cluster create projectsyn` with the following:
25+
26+
[source,bash]
27+
--
28+
if [ -d /dev/mapper ]; then
29+
k3d_extra_args="-v /dev/mapper:/dev/mapper"
30+
else
31+
k3d_extra_args=""
32+
fi
33+
k3d cluster create projectsyn ${k3d_extra_args}
34+
--

0 commit comments

Comments
 (0)