diff --git a/ansible/network/files/docker-compose-autoid.yml b/ansible/network/files/docker-compose-autoid.yml index bc25d75f..8da083f2 100644 --- a/ansible/network/files/docker-compose-autoid.yml +++ b/ansible/network/files/docker-compose-autoid.yml @@ -104,7 +104,7 @@ services: "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "archive", -# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", + "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", "--node-key", "${NODE_KEY}", diff --git a/ansible/network/files/docker-compose-bootstrap-autoid.yml b/ansible/network/files/docker-compose-bootstrap-autoid.yml index c86cc389..e8b9a3f1 100644 --- a/ansible/network/files/docker-compose-bootstrap-autoid.yml +++ b/ansible/network/files/docker-compose-bootstrap-autoid.yml @@ -106,7 +106,7 @@ services: "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", -# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", + "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", ## comment to disable external addresses using IP format diff --git a/ansible/network/files/docker-compose-bootstrap-domain.yml b/ansible/network/files/docker-compose-bootstrap-domain.yml index 82a84fab..ca379b39 100644 --- a/ansible/network/files/docker-compose-bootstrap-domain.yml +++ b/ansible/network/files/docker-compose-bootstrap-domain.yml @@ -106,8 +106,7 @@ services: "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", - "--sync", "full", -# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", + "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", ## comment to disable external addresses using IP format diff --git a/ansible/network/files/docker-compose-bootstrap.yml b/ansible/network/files/docker-compose-bootstrap.yml index edd4a057..b5224fa3 100644 --- a/ansible/network/files/docker-compose-bootstrap.yml +++ b/ansible/network/files/docker-compose-bootstrap.yml @@ -106,8 +106,7 @@ services: "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", - "--sync", "full", -# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", + "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", "--dsn-external-address", "/ip4/${EXTERNAL_IP}/tcp/30433", diff --git a/ansible/network/files/docker-compose-domain.yml b/ansible/network/files/docker-compose-domain.yml index 504f25d9..eb3adf39 100644 --- a/ansible/network/files/docker-compose-domain.yml +++ b/ansible/network/files/docker-compose-domain.yml @@ -105,7 +105,7 @@ services: "--state-pruning", "archive", "--blocks-pruning", "archive", "--sync", "full", -# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", + "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", "--node-key", "${NODE_KEY}", diff --git a/ansible/network/files/docker-compose-farmer.yml b/ansible/network/files/docker-compose-farmer.yml index e7847c91..3b84c55b 100644 --- a/ansible/network/files/docker-compose-farmer.yml +++ b/ansible/network/files/docker-compose-farmer.yml @@ -87,8 +87,7 @@ services: "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", - "--sync", "full", -# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", + "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", "--dsn-external-address", "/ip4/${EXTERNAL_IP}/tcp/30433", diff --git a/ansible/network/files/docker-compose-rpc.yml b/ansible/network/files/docker-compose-rpc.yml index 71f69178..94fc0eb1 100644 --- a/ansible/network/files/docker-compose-rpc.yml +++ b/ansible/network/files/docker-compose-rpc.yml @@ -100,7 +100,7 @@ services: "--state-pruning", "archive", "--blocks-pruning", "archive", "--sync", "full", -# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", + "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", "--dsn-external-address", "/ip4/${EXTERNAL_IP}/tcp/30433", diff --git a/templates/scripts/create_bootstrap_node_compose_file.sh b/templates/scripts/create_bootstrap_node_compose_file.sh index e34c1bef..9248aa0a 100755 --- a/templates/scripts/create_bootstrap_node_compose_file.sh +++ b/templates/scripts/create_bootstrap_node_compose_file.sh @@ -122,7 +122,6 @@ cat >> ~/subspace/docker-compose.yml << EOF "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", - "--sync", "full", "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", diff --git a/templates/scripts/create_bootstrap_node_domain_compose_file.sh b/templates/scripts/create_bootstrap_node_domain_compose_file.sh index fd1318de..82ebdc6a 100755 --- a/templates/scripts/create_bootstrap_node_domain_compose_file.sh +++ b/templates/scripts/create_bootstrap_node_domain_compose_file.sh @@ -122,7 +122,6 @@ cat >> ~/subspace/docker-compose.yml << EOF "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", - "--sync", "full", "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", diff --git a/templates/scripts/create_farmer_node_compose_file.sh b/templates/scripts/create_farmer_node_compose_file.sh index 850a4a7a..607ae27e 100755 --- a/templates/scripts/create_farmer_node_compose_file.sh +++ b/templates/scripts/create_farmer_node_compose_file.sh @@ -90,7 +90,6 @@ services: "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", - "--sync", "full", "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", diff --git a/templates/terraform/network-primitives-archive/gemini-3h/scripts/create_bootstrap_node_compose_file.sh b/templates/terraform/network-primitives-archive/gemini-3h/scripts/create_bootstrap_node_compose_file.sh index eab75958..8a0899db 100755 --- a/templates/terraform/network-primitives-archive/gemini-3h/scripts/create_bootstrap_node_compose_file.sh +++ b/templates/terraform/network-primitives-archive/gemini-3h/scripts/create_bootstrap_node_compose_file.sh @@ -122,7 +122,6 @@ cat >> ~/subspace/docker-compose.yml << EOF "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", - "--sync", "full", "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", diff --git a/templates/terraform/network-primitives-archive/gemini-3h/scripts/create_bootstrap_node_domain_compose_file.sh b/templates/terraform/network-primitives-archive/gemini-3h/scripts/create_bootstrap_node_domain_compose_file.sh index fe0da25f..c325c5a2 100755 --- a/templates/terraform/network-primitives-archive/gemini-3h/scripts/create_bootstrap_node_domain_compose_file.sh +++ b/templates/terraform/network-primitives-archive/gemini-3h/scripts/create_bootstrap_node_domain_compose_file.sh @@ -122,7 +122,6 @@ cat >> ~/subspace/docker-compose.yml << EOF "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", - "--sync", "full", "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", diff --git a/templates/terraform/network-primitives-archive/gemini-3h/scripts/create_farmer_node_compose_file.sh b/templates/terraform/network-primitives-archive/gemini-3h/scripts/create_farmer_node_compose_file.sh index dd3ed367..57bf65dd 100755 --- a/templates/terraform/network-primitives-archive/gemini-3h/scripts/create_farmer_node_compose_file.sh +++ b/templates/terraform/network-primitives-archive/gemini-3h/scripts/create_farmer_node_compose_file.sh @@ -90,7 +90,6 @@ services: "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", - "--sync", "full", "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", diff --git a/testing-framework/ec2/base/scripts/create_autoid_node_compose_file.sh b/testing-framework/ec2/base/scripts/create_autoid_node_compose_file.sh index a4b47eac..779b81c1 100644 --- a/testing-framework/ec2/base/scripts/create_autoid_node_compose_file.sh +++ b/testing-framework/ec2/base/scripts/create_autoid_node_compose_file.sh @@ -78,7 +78,7 @@ services: "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "archive", -# "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", + "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", "--node-key", "\${NODE_KEY}", diff --git a/testing-framework/ec2/base/scripts/create_bootstrap_node_autoid_compose_file.sh b/testing-framework/ec2/base/scripts/create_bootstrap_node_autoid_compose_file.sh index f65f9ef9..c13134c5 100644 --- a/testing-framework/ec2/base/scripts/create_bootstrap_node_autoid_compose_file.sh +++ b/testing-framework/ec2/base/scripts/create_bootstrap_node_autoid_compose_file.sh @@ -96,7 +96,7 @@ cat >> ~/subspace/subspace/docker-compose.yml << EOF "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", -# "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", + "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", ## comment to disable external addresses using IP format for now diff --git a/testing-framework/ec2/base/scripts/create_bootstrap_node_compose_file.sh b/testing-framework/ec2/base/scripts/create_bootstrap_node_compose_file.sh index 862d1bea..2a265b26 100644 --- a/testing-framework/ec2/base/scripts/create_bootstrap_node_compose_file.sh +++ b/testing-framework/ec2/base/scripts/create_bootstrap_node_compose_file.sh @@ -96,7 +96,7 @@ cat >> ~/subspace/subspace/docker-compose.yml << EOF "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", -# "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", + "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", "--dsn-external-address", "/ip4/$EXTERNAL_IP/tcp/30433", diff --git a/testing-framework/ec2/base/scripts/create_bootstrap_node_evm_compose_file.sh b/testing-framework/ec2/base/scripts/create_bootstrap_node_evm_compose_file.sh index ff45baa5..3192253a 100644 --- a/testing-framework/ec2/base/scripts/create_bootstrap_node_evm_compose_file.sh +++ b/testing-framework/ec2/base/scripts/create_bootstrap_node_evm_compose_file.sh @@ -97,7 +97,7 @@ cat >> ~/subspace/subspace/docker-compose.yml << EOF "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", -# "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", + "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", ## comment to disable external addresses using IP format for now diff --git a/testing-framework/ec2/base/scripts/create_domain_node_compose_file.sh b/testing-framework/ec2/base/scripts/create_domain_node_compose_file.sh index e958b22d..eed06066 100644 --- a/testing-framework/ec2/base/scripts/create_domain_node_compose_file.sh +++ b/testing-framework/ec2/base/scripts/create_domain_node_compose_file.sh @@ -78,7 +78,8 @@ services: "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "archive", -# "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", + "--sync", "full", + "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", "--node-key", "\${NODE_KEY}", diff --git a/testing-framework/ec2/base/scripts/create_farmer_node_compose_file.sh b/testing-framework/ec2/base/scripts/create_farmer_node_compose_file.sh index e9c07535..726b07ae 100644 --- a/testing-framework/ec2/base/scripts/create_farmer_node_compose_file.sh +++ b/testing-framework/ec2/base/scripts/create_farmer_node_compose_file.sh @@ -64,7 +64,7 @@ services: "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "256", -# "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", + "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", "--dsn-external-address", "/ip4/$EXTERNAL_IP/tcp/30433", diff --git a/testing-framework/ec2/base/scripts/create_node_compose_file.sh b/testing-framework/ec2/base/scripts/create_node_compose_file.sh index e69e1e3b..1f06d2ff 100644 --- a/testing-framework/ec2/base/scripts/create_node_compose_file.sh +++ b/testing-framework/ec2/base/scripts/create_node_compose_file.sh @@ -73,7 +73,8 @@ services: "--base-path", "/var/subspace", "--state-pruning", "archive", "--blocks-pruning", "archive", -# "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", + "--sync", "full", + "--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}", "--listen-on", "/ip4/0.0.0.0/tcp/30333", "--listen-on", "/ip6/::/tcp/30333", "--dsn-external-address", "/ip4/$EXTERNAL_IP/tcp/30433",