Skip to content

Commit

Permalink
napi/gw: script to redeploy all
Browse files Browse the repository at this point in the history
  • Loading branch information
baabeetaa committed Aug 8, 2023
1 parent a614a47 commit 6a4b337
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions notionalapi/gateway/redeploy_all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
SERVICES=$(cat <<-END
akash
assetmantle
axelar
bitcanna
bitsong
celestia-testnet
cheqd
chihuahua
composable
cosmoshub-archive-sub1
cosmoshub-archive-sub
cosmoshub
cryptoorgchain
cyber
dig-archive
dig
emoney
evmos-archive-sub1
evmos-archive-sub2
evmos-archive-sub3
evmos-archive-sub
evmos
fetchhub
gravitybridge
injective
irisnet
ixo
juno
kava
kichain
konstellation
kujira
mars
noble
omniflixhub
osmosis-testnet
osmosis
persistent
quasar
quicksilver
regen
sei-archive-sub
sei
sentinel
stargaze
starname
stride
terra2
terra
umee
vidulum
whitewhale-testnet
whitewhale
END
)

for service_name in $SERVICES; do
echo "redeploying $service_name"
sh docker_service_create.sh $service_name
sleep 3
done

0 comments on commit 6a4b337

Please sign in to comment.