Internal Snapshot S3 Reset #102
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
name: Internal Snapshot S3 Reset | |
on: | |
workflow_dispatch: | |
inputs: | |
chain: | |
required: true | |
description: 'chain' | |
default: 'odin' | |
type: choice | |
options: | |
- odin | |
- heimdall | |
- odin-preview | |
- heimdall-preview | |
- internal-all | |
- preview-all | |
concurrency: | |
group: release | |
jobs: | |
release-odin: | |
if: ${{ github.event.inputs.chain == 'odin' || github.event.inputs.chain == 'internal-all' }} | |
runs-on: ubuntu-latest | |
environment: | |
name: internal | |
steps: | |
- uses: actions/checkout@v3 | |
- name: reset internal snapshot | |
run: | | |
echo "y" | bash .github/scripts/reset-snapshot.sh odin | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }} | |
release-heimdall: | |
if: ${{ github.event.inputs.chain == 'heimdall' || github.event.inputs.chain == 'internal-all' }} | |
runs-on: ubuntu-latest | |
environment: | |
name: internal | |
steps: | |
- uses: actions/checkout@v3 | |
- name: reset internal snapshot | |
run: | | |
echo "y" | bash .github/scripts/reset-snapshot.sh heimdall | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }} | |
release-odin-preview: | |
if: ${{ github.event.inputs.chain == 'odin-preview' || github.event.inputs.chain == 'preview-all' }} | |
runs-on: ubuntu-latest | |
environment: | |
name: internal | |
steps: | |
- uses: actions/checkout@v3 | |
- name: reset internal snapshot | |
run: | | |
echo "y" | bash .github/scripts/reset-snapshot.sh odin-preview | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }} | |
release-heimdall-preview: | |
if: ${{ github.event.inputs.chain == 'heimdall-preview' || github.event.inputs.chain == 'preview-all' }} | |
runs-on: ubuntu-latest | |
environment: | |
name: internal | |
steps: | |
- uses: actions/checkout@v3 | |
- name: reset internal snapshot | |
run: | | |
echo "y" | bash .github/scripts/reset-snapshot.sh heimdall-preview | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }} | |
reset-bridge-service: | |
if: ${{ github.event.inputs.chain == 'internal-all' || github.event.inputs.chain == 'odin' || github.event.inputs.chain == 'heimdall' }} | |
runs-on: ubuntu-latest | |
needs: [release-odin, release-heimdall] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up kubectl | |
uses: azure/setup-kubectl@v1 | |
with: | |
version: 'v1.29.0' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y jq | |
- uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBECONFIG }} | |
with: | |
args: scale --replicas=0 statefulset/bridge-service -n heimdall | |
- uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBECONFIG }} | |
with: | |
args: scale --replicas=0 statefulset/bridge-service-db -n heimdall | |
- uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBECONFIG }} | |
with: | |
args: delete pvc/bridge-service-db-data-bridge-service-db-0 --namespace=heimdall | |
- uses: actions/setup-python@v2.2.2 | |
with: | |
python-version: 3.10.13 | |
- run: | | |
python -m pip install -r requirements.txt | |
flit install | |
name: install dependencies | |
working-directory: ./scripts | |
- name: Update 'bridgeService.rdb.defaultStartBlockIndex' | |
run: | | |
python cli.py update-bridge-service 9c-internal heimdall | |
working-directory: ./scripts | |
env: | |
GITHUB_TOKEN: ${{ secrets.P_GITHUB_TOKEN }} | |
reset-bridge-service-preview: | |
if: ${{ github.event.inputs.chain == 'preview-all' || github.event.inputs.chain == 'odin-preview' || github.event.inputs.chain == 'heimdall-preview' }} | |
runs-on: ubuntu-latest | |
needs: [release-odin-preview, release-heimdall-preview] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up kubectl | |
uses: azure/setup-kubectl@v1 | |
with: | |
version: 'v1.29.0' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y jq | |
- name: Display current kubectl context | |
run: | | |
kubectl config current-context | |
kubectl config view | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBECONFIG }} | |
- name: List statefulsets in heimdall-preview | |
run: | | |
kubectl get statefulsets -n heimdall-preview | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBECONFIG }} | |
- uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBECONFIG }} | |
with: | |
args: scale --replicas=0 statefulset/bridge-service -n heimdall-preview | |
- uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBECONFIG }} | |
with: | |
args: scale --replicas=0 statefulset/bridge-service-db -n heimdall-preview | |
- uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBECONFIG }} | |
with: | |
args: delete pvc/bridge-service-db-data-bridge-service-db-0 --namespace=heimdall-preview | |
- uses: actions/setup-python@v2.2.2 | |
with: | |
python-version: 3.10.13 | |
- run: | | |
python -m pip install -r requirements.txt | |
flit install | |
name: install dependencies | |
working-directory: ./scripts | |
- name: Update 'bridgeService.rdb.defaultStartBlockIndex' | |
run: | | |
python cli.py update-bridge-service 9c-internal heimdall-preview | |
working-directory: ./scripts | |
env: | |
GITHUB_TOKEN: ${{ secrets.P_GITHUB_TOKEN }} |