From 773975ac1a9041e2794abcd1045b39fa2152af91 Mon Sep 17 00:00:00 2001 From: ylembachar Date: Thu, 28 Aug 2025 16:44:02 +0200 Subject: [PATCH 1/3] bump upstream version to v1.3.12 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 71872a1..1ff847a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,7 +12,7 @@ services: build: context: shutter args: - UPSTREAM_VERSION: v1.3.10 + UPSTREAM_VERSION: v1.3.12 KEYPER_CONFIG_DIR: /keyper/config SHUTTER_CHAIN_DIR: /chain STAKER_SCRIPTS_VERSION: v0.1.0 From c7005c0c73991f5ac4a5873fb6858e78be673118 Mon Sep 17 00:00:00 2001 From: ylembachar Date: Thu, 28 Aug 2025 16:52:19 +0200 Subject: [PATCH 2/3] add missing config variables --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 13d158e..418bd01 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,9 @@ The setup wizard provides options for users to configure the package. These valu - `PUSHGATEWAY_URL`: You don't need to change the default here. - `PUSHGATEWAY_USERNAME`: A username for the push gateway from above. - `PUSHGATEWAY_PASSWORD`: A password for the push gateway from above. + - `PUSH_LOGS_ENABLED`: A boolean flag to enable log collection. This feature enables log pushing to a Loki/VmLogs server, allowing the Shutter team to collect and monitor keyper logs for troubleshooting and network monitoring purposes. + - `HTTP_ENABLED`: A boolean flag to enable HTTP service endpoints. This should remain **false** unless specifically requested by the Shutter team. When enabled, this will expose additional keyper HTTP endpoints for advanced monitoring and debugging. + ### Developer notes @@ -42,4 +45,4 @@ Building the package requires docker and a vpn connection to a dappnode. It can ``` npx @dappnode/dappnodesdk@latest build --all-variants -``` +``` \ No newline at end of file From f88b2cd4a992aabe94d8ea7f7c01d11167beccf0 Mon Sep 17 00:00:00 2001 From: ylembachar Date: Thu, 28 Aug 2025 16:55:41 +0200 Subject: [PATCH 3/3] fix variable names --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 418bd01..b0ee99f 100644 --- a/README.md +++ b/README.md @@ -35,8 +35,8 @@ The setup wizard provides options for users to configure the package. These valu - `PUSHGATEWAY_URL`: You don't need to change the default here. - `PUSHGATEWAY_USERNAME`: A username for the push gateway from above. - `PUSHGATEWAY_PASSWORD`: A password for the push gateway from above. - - `PUSH_LOGS_ENABLED`: A boolean flag to enable log collection. This feature enables log pushing to a Loki/VmLogs server, allowing the Shutter team to collect and monitor keyper logs for troubleshooting and network monitoring purposes. - - `HTTP_ENABLED`: A boolean flag to enable HTTP service endpoints. This should remain **false** unless specifically requested by the Shutter team. When enabled, this will expose additional keyper HTTP endpoints for advanced monitoring and debugging. + - `SHUTTER_PUSH_LOGS_ENABLED`: A boolean flag to enable log collection. This feature enables log pushing to a Loki/VmLogs server, allowing the Shutter team to collect and monitor keyper logs for troubleshooting and network monitoring purposes. + - `SHUTTER_HTTP_ENABLED`: A boolean flag to enable HTTP service endpoints. This should remain **false** unless specifically requested by the Shutter team. When enabled, this will expose additional keyper HTTP endpoints for advanced monitoring and debugging. ### Developer notes