Skip to content

Commit bd4d03f

Browse files
committed
infra flag changes for DSN sync and POT
1 parent b9a77a0 commit bd4d03f

24 files changed

+14
-29
lines changed

ansible/network/files/docker-compose-autoid.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ services:
104104
"--base-path", "/var/subspace",
105105
"--state-pruning", "archive",
106106
"--blocks-pruning", "archive",
107-
# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
107+
"--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
108108
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
109109
"--listen-on", "/ip6/::/tcp/30333",
110110
"--node-key", "${NODE_KEY}",

ansible/network/files/docker-compose-bootstrap-autoid.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ services:
106106
"--base-path", "/var/subspace",
107107
"--state-pruning", "archive",
108108
"--blocks-pruning", "256",
109-
# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
109+
"--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
110110
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
111111
"--listen-on", "/ip6/::/tcp/30333",
112112
## comment to disable external addresses using IP format

ansible/network/files/docker-compose-bootstrap-domain.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ services:
106106
"--base-path", "/var/subspace",
107107
"--state-pruning", "archive",
108108
"--blocks-pruning", "256",
109-
"--sync", "full",
110-
# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
109+
"--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
111110
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
112111
"--listen-on", "/ip6/::/tcp/30333",
113112
## comment to disable external addresses using IP format

ansible/network/files/docker-compose-bootstrap.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ services:
106106
"--base-path", "/var/subspace",
107107
"--state-pruning", "archive",
108108
"--blocks-pruning", "256",
109-
"--sync", "full",
110-
# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
109+
"--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
111110
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
112111
"--listen-on", "/ip6/::/tcp/30333",
113112
"--dsn-external-address", "/ip4/${EXTERNAL_IP}/tcp/30433",

ansible/network/files/docker-compose-domain.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ services:
104104
"--base-path", "/var/subspace",
105105
"--state-pruning", "archive",
106106
"--blocks-pruning", "archive",
107-
"--sync", "full",
108-
# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
107+
"--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
109108
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
110109
"--listen-on", "/ip6/::/tcp/30333",
111110
"--node-key", "${NODE_KEY}",

ansible/network/files/docker-compose-farmer.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,7 @@ services:
8787
"--base-path", "/var/subspace",
8888
"--state-pruning", "archive",
8989
"--blocks-pruning", "256",
90-
"--sync", "full",
91-
# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
90+
"--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
9291
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
9392
"--listen-on", "/ip6/::/tcp/30333",
9493
"--dsn-external-address", "/ip4/${EXTERNAL_IP}/tcp/30433",

ansible/network/files/docker-compose-rpc.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,7 @@ services:
9999
"--base-path", "/var/subspace",
100100
"--state-pruning", "archive",
101101
"--blocks-pruning", "archive",
102-
"--sync", "full",
103-
# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
102+
"--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
104103
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
105104
"--listen-on", "/ip6/::/tcp/30333",
106105
"--dsn-external-address", "/ip4/${EXTERNAL_IP}/tcp/30433",

templates/scripts/create_bootstrap_node_compose_file.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ cat >> ~/subspace/docker-compose.yml << EOF
122122
"--base-path", "/var/subspace",
123123
"--state-pruning", "archive",
124124
"--blocks-pruning", "256",
125-
"--sync", "full",
126125
"--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}",
127126
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
128127
"--listen-on", "/ip6/::/tcp/30333",

templates/scripts/create_bootstrap_node_domain_compose_file.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ cat >> ~/subspace/docker-compose.yml << EOF
122122
"--base-path", "/var/subspace",
123123
"--state-pruning", "archive",
124124
"--blocks-pruning", "256",
125-
"--sync", "full",
126125
"--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}",
127126
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
128127
"--listen-on", "/ip6/::/tcp/30333",

templates/scripts/create_domain_node_compose_file.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ services:
111111
"--base-path", "/var/subspace",
112112
"--state-pruning", "archive",
113113
"--blocks-pruning", "archive",
114-
"--sync", "full",
115114
"--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}",
116115
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
117116
"--listen-on", "/ip6/::/tcp/30333",

0 commit comments

Comments
 (0)