We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7b6baa commit 20d269bCopy full SHA for 20d269b
1 file changed
.github/workflows/deploy-testnet.yml
@@ -17,7 +17,7 @@ jobs:
17
strategy:
18
fail-fast: false
19
matrix:
20
- region: [us-central1, europe-west1]
+ region: [us-central1, europe-west1, asia-east1]
21
22
steps:
23
- name: Checkout
@@ -41,6 +41,8 @@ jobs:
41
REGION_PREFIX="us"
42
elif [[ "${{ matrix.region }}" == "europe-west1" ]]; then
43
REGION_PREFIX="eu"
44
+ elif [[ "${{ matrix.region }}" == "asia-east1" ]]; then
45
+ REGION_PREFIX="asia"
46
fi
47
echo "Restarting testnet collator in ${{ matrix.region }}..."
48
kubectl rollout restart statefulset/testnet-${REGION_PREFIX}-idn-collator -n idn-testnet
0 commit comments