From 9100306f4eacd7417914ea52afb6caf3ca7c1b12 Mon Sep 17 00:00:00 2001 From: Pierre Besson Date: Thu, 23 May 2024 11:57:17 +0200 Subject: [PATCH 1/4] set default node_legacy_rpc_flags to false as new substrate version don't use the legacy flags --- roles/node/defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/node/defaults/main.yml b/roles/node/defaults/main.yml index 8f89d3a..40fe2be 100644 --- a/roles/node/defaults/main.yml +++ b/roles/node/defaults/main.yml @@ -79,7 +79,7 @@ node_p2p_private_key: "" # Substrate changed the default rpc flags: https://github.com/paritytech/substrate/pull/13384 # Port `9933` was replaced by combined port `9944` # If your node is still using the old binary with old RPC flags, please set this to true -node_legacy_rpc_flags: true +node_legacy_rpc_flags: false ## p2p node_p2p_bind_addr: "0.0.0.0" node_p2p_port: "30333" From 9f405faf6530ab700b6f442ffed3269495885b5c Mon Sep 17 00:00:00 2001 From: Pierre Besson Date: Thu, 23 May 2024 12:04:47 +0200 Subject: [PATCH 2/4] set parachain key inject port in role to the default parachain rpc port: 9954 --- roles/key_inject/defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/key_inject/defaults/main.yml b/roles/key_inject/defaults/main.yml index d40c150..8c26680 100644 --- a/roles/key_inject/defaults/main.yml +++ b/roles/key_inject/defaults/main.yml @@ -2,7 +2,7 @@ subkey_path: https://releases.parity.io/substrate/x86_64-debian%3Astretch/v3.0.0/subkey/subkey # Parachain key injection variables -key_inject_parachain_rpc_port: 9955 +key_inject_parachain_rpc_port: 9954 key_inject_parachain_scheme: sr25519 # key_inject_parachain_aura_private_key= From 95b2fae6f3141d0e38d83756e7b2bd7e3d675742 Mon Sep 17 00:00:00 2001 From: Pierre Besson Date: Thu, 23 May 2024 16:25:45 +0200 Subject: [PATCH 3/4] set default pruning in ansible role to 256 as its the recommended value --- roles/node/defaults/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/node/defaults/main.yml b/roles/node/defaults/main.yml index 40fe2be..49537d3 100644 --- a/roles/node/defaults/main.yml +++ b/roles/node/defaults/main.yml @@ -102,7 +102,7 @@ node_db_cache: "" # amount of blocks to save state in the pruning mode # if you need the state pruning mode the recommended (default) value is 256 # 0 - the state pruning mode is disabled, keep the state of all blocks ('--state-pruning archive') -node_pruning: 0 +node_pruning: 256 # You can specify any custom options as a list node_custom_options: [] # - "--wasm-execution Compiled" @@ -204,7 +204,7 @@ node_parachain_out_peers: "25" # amount of blocks to save state in the pruning mode # if you need the state pruning mode the recommended (default) value is 256 # 0 - the state pruning mode is disabled, keep the state of all blocks ('--state-pruning archive') -node_parachain_pruning: 0 +node_parachain_pruning: 256 # You can specify any custom options as a list node_parachain_custom_options: [] # - "--wasm-execution Compiled" From be88f75e80a2386bfffc99d77420cd02f5a12a0a Mon Sep 17 00:00:00 2001 From: Pierre Besson Date: Thu, 23 May 2024 16:32:53 +0200 Subject: [PATCH 4/4] bump minor version --- galaxy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy.yml b/galaxy.yml index 41ef4b1..5f8d2c7 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -8,7 +8,7 @@ namespace: paritytech name: chain # The version of the collection. Must be compatible with semantic versioning -version: 1.8.3 +version: 1.9.0 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md