summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--curtin/block/zfs.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/curtin/block/zfs.py b/curtin/block/zfs.py
index 519fa513..29ace32f 100644
--- a/curtin/block/zfs.py
+++ b/curtin/block/zfs.py
@@ -86,7 +86,9 @@ class ZPoolEncryption:
# Create the dataset for the keystore. This is a bit special as it
# won't be ZFS despite being on the zpool.
- keystore_size = util.human2bytes("20M")
+ # We previously hardcoded the size to 20M but raised it to 36M for
+ # plucky, see LP: #2107381.
+ keystore_size = util.human2bytes("36M")
zfs_create(
self.poolname, "keystore", {"encryption": "off"}, keystore_size,
)