-
Notifications
You must be signed in to change notification settings - Fork 371
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e01e10
commit 24a4aab
Showing
4 changed files
with
127 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
name: Restart Protonet | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
auto_scaling_group_names: | ||
required: true | ||
type: string | ||
description: 'Comma-separated list of auto-scaling group names' | ||
chain-tag-name: | ||
required: false | ||
type: string | ||
default: 'KavaChainId' | ||
chain-id: | ||
required: true | ||
type: string | ||
aws-region: | ||
required: true | ||
type: string | ||
ssm-document-name: | ||
required: true | ||
type: string | ||
playbook-name: | ||
required: true | ||
type: string | ||
playbook-infrastructure-branch: | ||
required: true | ||
type: string | ||
secrets: | ||
CI_AWS_KEY_ID: | ||
required: true | ||
CI_AWS_KEY_SECRET: | ||
required: true | ||
KAVA_PRIVATE_GITHUB_ACCESS_TOKEN: | ||
required: true | ||
|
||
# in order: | ||
# enter standby (prevents autoscaling group from killing node during deploy) | ||
# stop doctor and kava | ||
# download updated binary and genesis | ||
# reset application database state | ||
# start kava and doctor | ||
# enter inService | ||
jobs: | ||
restart-traffic: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout repo from current commit | ||
uses: actions/checkout@v4 | ||
- name: take the chain offline | ||
run: bash ${GITHUB_WORKSPACE}/.github/scripts/put-all-chain-nodes-on-standby.sh | ||
env: | ||
CHAIN_TAG_NAME: ${{ inputs.chain-tag-name }} | ||
CHAIN_ID: ${{ inputs.chain-id }} | ||
AWS_REGION: ${{ inputs.aws-region }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.CI_AWS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.CI_AWS_KEY_SECRET }} | ||
- name: checkout infrastructure repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: Kava-Labs/infrastructure | ||
token: ${{ secrets.KAVA_PRIVATE_GITHUB_ACCESS_TOKEN }} | ||
path: infrastructure | ||
ref: shef-protonet-validator-network-data-reset | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: go.mod | ||
- name: build kava node updater | ||
run: cd infrastructure/cli/kava-node-updater && make install && cd ../../../ | ||
- name: run reset playbook on all chain nodes | ||
run: | | ||
IFS=',' read -r -a auto_scaling_group_names <<< "$AUTO_SCALING_GROUP_NAMES" | ||
for auto_scaling_group_name in "${auto_scaling_group_names[@]}"; do | ||
kava-node-updater \ | ||
--debug \ | ||
--max-retries=2 \ | ||
--aws-ssm-document-name="$SSM_DOCUMENT_NAME" \ | ||
--infrastructure-git-pointer="$PLAYBOOK_INFRASTRUCTURE_BRANCH" \ | ||
--update-playbook-filename="$PLAYBOOK_NAME" \ | ||
--autoscaling-group-name="$auto_scaling_group_name" \ | ||
--max-upgrade-batch-size=0 \ | ||
--node-types="" \ | ||
--wait-for-node-sync-after-upgrade=true | ||
done | ||
env: | ||
SSM_DOCUMENT_NAME: ${{ inputs.ssm-document-name }} | ||
PLAYBOOK_NAME: ${{ inputs.playbook-name }} | ||
AUTO_SCALING_GROUP_NAMES: ${{ inputs.auto_scaling_group_names }} | ||
AWS_REGION: ${{ inputs.aws-region }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.CI_AWS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.CI_AWS_KEY_SECRET }} | ||
AWS_SDK_LOAD_CONFIG: 1 | ||
PLAYBOOK_INFRASTRUCTURE_BRANCH: ${{ inputs.playbook-infrastructure-branch }} | ||
- name: bring the chain online | ||
run: bash ${GITHUB_WORKSPACE}/.github/scripts/exit-standby-all-chain-nodes.sh | ||
env: | ||
CHAIN_TAG_NAME: ${{ inputs.chain-tag-name }} | ||
CHAIN_ID: ${{ inputs.chain-id }} | ||
AWS_REGION: ${{ inputs.aws-region }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.CI_AWS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.CI_AWS_KEY_SECRET }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
master | ||
shef-protonet-validator-network-ci |