Skip to content
Snippets Groups Projects
Commit a8b3805d authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Give the localdev cluster a new filesystem for the voucher database

parent 7593de15
No related branches found
No related tags found
2 merge requests!228merge develop into production,!226use a different state directory for the issuer's voucher database
......@@ -31,6 +31,17 @@
prefixLength = 24;
}];
# The issuer configuration wants to read the location of its database
# directory from the filesystem configuration. Since the Vagrant
# environment doesn't have separate volume-as-infrastructure management
# (maybe it could? but why bother?) we do a bind-mount here so there is a
# configured value readable. The database won't really have a dedicated
# volume but it will sort of appear as if it does.
fileSystems."voucher-database" = {
device = "/var/lib/origin-zkapissuer-vouchers";
mountPoint = "/var/lib/zkapissuer-vouchers";
options = ["bind"];
};
fileSystems."/storage" = { fsType = "tmpfs"; };
fileSystems."/" =
{ device = "/dev/sda1";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment