Skip to content

Commit

Permalink
Upgrade oracle fullnodes (#7659)
Browse files Browse the repository at this point in the history
### Description

* Upgrades alfajores and mainnet fullnodes to 1.2.5
* Upgrades baklava fullnodes to the commit that is 1.3.0-beta.2 + the txpool fix
* Adds `--set geth.use_gstorage_data=false` for AKS fullnodes to prevent them from trying to pull chaindata without having the ability to via a service account (the work to make this be possible is tracked with celo-org/celo-oracle#27)

### Other changes

n/a

### Tested

Deployed oracle fullnodes

### Related issues

n/a

### Backwards compatibility

Yes

### Documentation

n/a
  • Loading branch information
tkporter authored Apr 27, 2021
1 parent c710cc1 commit 1dd2c3b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .env.alfajores
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@ AZURE_ORACLE_CENTRALUS_CELOUSD_ORACLE_ADDRESSES_FROM_MNEMONIC_COUNT=10
AZURE_ORACLE_CENTRALUS_CELOEUR_ORACLE_ADDRESSES_FROM_MNEMONIC_COUNT=10
AZURE_ORACLE_CENTRALUS_FULL_NODES_COUNT=2
AZURE_ORACLE_CENTRALUS_FULL_NODES_DISK_SIZE=30
AZURE_ORACLE_CENTRALUS_FULL_NODES_ROLLING_UPDATE_PARTITION=0

# Temporarily point to celo-org repository to consume patched image.
GETH_NODE_DOCKER_IMAGE_REPOSITORY="us.gcr.io/celo-org/geth"
GETH_NODE_DOCKER_IMAGE_TAG="1.2.4"
GETH_NODE_DOCKER_IMAGE_TAG="1.2.5"

GETH_BOOTNODE_DOCKER_IMAGE_REPOSITORY="us.gcr.io/celo-testnet/geth-all"
GETH_BOOTNODE_DOCKER_IMAGE_TAG="master"
Expand Down
2 changes: 1 addition & 1 deletion .env.baklava
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ CELOSTATS_BANNED_ADDRESSES=""
CELOSTATS_RESERVED_ADDRESSES=""

GETH_NODE_DOCKER_IMAGE_REPOSITORY="us.gcr.io/celo-org/geth"
GETH_NODE_DOCKER_IMAGE_TAG="1.2.2"
GETH_NODE_DOCKER_IMAGE_TAG="aca8eb115cf6413168b3418034501b0a30173f33"

GETH_BOOTNODE_DOCKER_IMAGE_REPOSITORY="us.gcr.io/celo-testnet/geth-all"
GETH_BOOTNODE_DOCKER_IMAGE_TAG="master"
Expand Down
2 changes: 1 addition & 1 deletion .env.rc1
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ CELOSTATS_RESERVED_ADDRESSES=""
GETH_NODE_DOCKER_IMAGE_REPOSITORY="us.gcr.io/celo-org/geth"
# When upgrading change this to latest commit hash from the master of the geth repo
# `geth $ git show | head -n 1`
GETH_NODE_DOCKER_IMAGE_TAG="8ae8f032979aba42ad64a0ba67a3a5585dd9c63b"
GETH_NODE_DOCKER_IMAGE_TAG="1.2.5"

GETH_BOOTNODE_DOCKER_IMAGE_REPOSITORY="us.gcr.io/celo-testnet/geth-all"
# When upgrading change this to latest commit hash from the master of the geth repo
Expand Down
1 change: 1 addition & 0 deletions packages/celotool/src/lib/k8s-fullnode/aks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export class AksFullNodeDeployer extends BaseFullNodeDeployer {
`--set geth.maxpeers=150`,
`--set geth.light.maxpeers=0`,
`--set geth.light.serve=0`,
`--set geth.use_gstorage_data=false`,
]
}

Expand Down

0 comments on commit 1dd2c3b

Please sign in to comment.