Merge pull request #169 from matter-labs/debug_vault

chore: debug vault with gramine warning
This commit is contained in:
Harald Hoyer 2024-08-06 13:10:48 +02:00 committed by GitHub
commit 738412a13c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,7 +42,7 @@ nixsgxLib.mkSGXContainer {
"-config=/opt/vault/config.hcl"
"-log-level=trace"
];
log_level = "error";
log_level = "warning";
env = {
VAULT_CLUSTER_ADDR.passthrough = true;
VAULT_API_ADDR.passthrough = true;
@ -67,8 +67,8 @@ nixsgxLib.mkSGXContainer {
sgx = {
debug = false;
edmm_enable = false;
enclave_size = "8G";
max_threads = 64;
enclave_size = "16G";
max_threads = 128;
trusted_files = [
"file:/opt/vault/plugins/"
@ -79,7 +79,7 @@ nixsgxLib.mkSGXContainer {
};
sys.stack.size = "1M";
sys.stack.size = "16M";
# vault needs flock
sys.experimental__enable_flock = true;
};