This is an automated email from the ASF dual-hosted git repository.

lahirujayathilake pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git


The following commit(s) were added to refs/heads/master by this push:
     new 6cd5f3ce2 AIRAVATA-3972: fix malformed JSON in Vault local config
6cd5f3ce2 is described below

commit 6cd5f3ce25eb203e720a2d5b266ac5f9e8ee6f47
Author: jayvenn21 <[email protected]>
AuthorDate: Wed Mar 18 22:12:29 2026 -0400

    AIRAVATA-3972: fix malformed JSON in Vault local config
    
    The VAULT_LOCAL_CONFIG JSON string had a misplaced closing brace that
    left the "ui": true property outside the JSON object, causing it to
    be silently ignored by Vault on container startup.
---
 compose/docker-compose.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compose/docker-compose.yml b/compose/docker-compose.yml
index 66cbe537b..5e883281e 100644
--- a/compose/docker-compose.yml
+++ b/compose/docker-compose.yml
@@ -68,7 +68,7 @@ services:
       VAULT_ADDR: http://0.0.0.0:8201
       VAULT_API_ADDR: http://127.0.0.1:8200
       VAULT_CLUSTER_ADDR: http://127.0.0.1:8201
-      VAULT_LOCAL_CONFIG: '{"listener": [{"tcp":{"address": 
"0.0.0.0:8201","tls_disable":"1"}}], "default_lease_ttl": "168h", 
"max_lease_ttl": "720h"}, "ui": true}'
+      VAULT_LOCAL_CONFIG: '{"listener": [{"tcp":{"address": 
"0.0.0.0:8201","tls_disable":"1"}}], "default_lease_ttl": "168h", 
"max_lease_ttl": "720h", "ui": true}'
     cap_add:
       - IPC_LOCK
     volumes:

Reply via email to