Skip to content

Commit

Permalink
upgrade gemini-3h (#331)
Browse files Browse the repository at this point in the history
* update gemini-3h release jul-22

* add full sync parameter

temp fix for autonomys/subspace#2950

* update gemini-3h release jul-26

* update node org

* upgrade release jul-29
  • Loading branch information
DaMandal0rian authored Jul 30, 2024
1 parent 10e8d01 commit 8579eaa
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 11 deletions.
1 change: 1 addition & 0 deletions ansible/network/files/docker-compose-bootstrap-domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ 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",
Expand Down
1 change: 1 addition & 0 deletions ansible/network/files/docker-compose-bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ 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",
Expand Down
1 change: 1 addition & 0 deletions ansible/network/files/docker-compose-domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ services:
"--base-path", "/var/subspace",
"--state-pruning", "archive",
"--blocks-pruning", "archive",
"--sync", "full",
# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
"--listen-on", "/ip6/::/tcp/30333",
Expand Down
1 change: 1 addition & 0 deletions ansible/network/files/docker-compose-farmer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ 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",
Expand Down
3 changes: 2 additions & 1 deletion ansible/network/files/docker-compose-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ services:
"--chain", "${NETWORK_NAME}",
"--base-path", "/var/subspace",
"--state-pruning", "archive",
"--blocks-pruning", "256",
"--blocks-pruning", "archive",
"--sync", "full",
# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
"--listen-on", "/ip6/::/tcp/30333",
Expand Down
1 change: 1 addition & 0 deletions ansible/network/files/docker-compose-rpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ services:
"--base-path", "/var/subspace",
"--state-pruning", "archive",
"--blocks-pruning", "archive",
"--sync", "full",
# "--pot-external-entropy", "${POT_EXTERNAL_ENTROPY}",
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
"--listen-on", "/ip6/::/tcp/30333",
Expand Down
20 changes: 10 additions & 10 deletions resources/gemini-3h/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ module "gemini-3h" {
deployment-version = 0
regions = var.aws_region
instance-count = var.instance_count["bootstrap"]
docker-org = "subspace"
docker-tag = "gemini-3h-2024-jul-16"
docker-org = "autonomys"
docker-tag = "gemini-3h-2024-jul-29"
reserved-only = false
prune = false
genesis-hash = "0c121c75f4ef450f40619e1fca9d1e8e7fbabc42c895bc4790801e85d5a91c34"
Expand All @@ -24,8 +24,8 @@ module "gemini-3h" {
deployment-version = 0
regions = var.aws_region
instance-count = var.instance_count["evm_bootstrap"]
docker-org = "subspace"
docker-tag = "gemini-3h-2024-jul-16"
docker-org = "autonomys"
docker-tag = "gemini-3h-2024-jul-29"
reserved-only = false
prune = false
genesis-hash = "0c121c75f4ef450f40619e1fca9d1e8e7fbabc42c895bc4790801e85d5a91c34"
Expand Down Expand Up @@ -74,8 +74,8 @@ module "gemini-3h" {
deployment-version = 0
regions = var.aws_region
instance-count = var.instance_count["rpc"]
docker-org = "subspace"
docker-tag = "gemini-3h-2024-jul-16"
docker-org = "autonomys"
docker-tag = "gemini-3h-2024-jul-29"
domain-prefix = "rpc"
reserved-only = false
prune = false
Expand All @@ -89,8 +89,8 @@ module "gemini-3h" {
deployment-version = 0
regions = var.aws_region
instance-count = var.instance_count["domain"]
docker-org = "subspace"
docker-tag = "gemini-3h-2024-jul-16"
docker-org = "autonomys"
docker-tag = "gemini-3h-2024-jul-29"
domain-prefix = "nova"
reserved-only = false
prune = false
Expand All @@ -107,8 +107,8 @@ module "gemini-3h" {
deployment-version = 0
regions = var.aws_region
instance-count = var.instance_count["farmer"]
docker-org = "subspace"
docker-tag = "gemini-3h-2024-jul-16"
docker-org = "autonomys"
docker-tag = "gemini-3h-2024-jul-29"
reserved-only = false
prune = false
plot-size = "100G"
Expand Down
1 change: 1 addition & 0 deletions templates/scripts/create_bootstrap_node_compose_file.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ 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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ 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",
Expand Down
1 change: 1 addition & 0 deletions templates/scripts/create_domain_node_compose_file.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ services:
"--base-path", "/var/subspace",
"--state-pruning", "archive",
"--blocks-pruning", "archive",
"--sync", "full",
"--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}",
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
"--listen-on", "/ip6/::/tcp/30333",
Expand Down
1 change: 1 addition & 0 deletions templates/scripts/create_farmer_node_compose_file.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ 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",
Expand Down
1 change: 1 addition & 0 deletions templates/scripts/create_rpc_node_compose_file.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ services:
"--base-path", "/var/subspace",
"--state-pruning", "archive",
"--blocks-pruning", "archive",
"--sync", "full",
"--pot-external-entropy", "\${POT_EXTERNAL_ENTROPY}",
"--listen-on", "/ip4/0.0.0.0/tcp/30333",
"--listen-on", "/ip6/::/tcp/30333",
Expand Down

0 comments on commit 8579eaa

Please sign in to comment.