trigger-testnet-image-release #46
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: Testnet - Deploy three validators network | |
on: | |
repository_dispatch: | |
types: [trigger-testnet-image-release] | |
env: | |
refresh_containers_command: docker-compose stop && docker-compose rm -f && docker-compose pull && docker-compose up -d db validator | |
refresh_metrics_containers_command: docker-compose stop && docker-compose rm -f && docker-compose pull && docker-compose up -d | |
copy_logs_command: docker logs runner_validator_1 > logs-$(date +'%d-%m-%Y_%H:%M:%S').log | |
jobs: | |
deploy_testnet_alice: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup GCloud SDK | |
uses: google-github-actions/[email protected] | |
with: | |
project_id: ${{ secrets.GCP_PROJECT }} | |
service_account_key: ${{ secrets.GCP_CE_KEY }} | |
- name: Export docker .env | |
shell: bash | |
run: | | |
echo 'TAG=${{ github.event.client_payload.tag }}' > .env && \ | |
echo '${{ secrets.ENV_TESTNET }}' >> .env | |
- name: Export application config | |
shell: bash | |
run: | | |
echo '${{ secrets.APP_TESTNET_ALICE_CONFIG }}' > ./node.yml && \ | |
echo '${{ secrets.APP_TESTNET_BRIDGE_CONFIG }}' > ./bridge.yml | |
- name: Copy files | |
run: | | |
gcloud compute scp --zone=${{ secrets.APP_TESTNET_ALICE_ZONE }} ./.env ./docker-compose.yml ./node.yml ./bridge.yml ${{ secrets.APP_TESTNET_ALICE_INSTANCE }}:~ && \ | |
gcloud compute scp --zone=${{ secrets.APP_TESTNET_ALICE_ZONE }} ./monitoring/grafana/config-overrides.env ${{ secrets.APP_TESTNET_ALICE_INSTANCE }}:~/monitoring/grafana | |
- name: Copy logs | |
run: gcloud compute ssh ${{ secrets.APP_TESTNET_ALICE_INSTANCE }} --zone=${{ secrets.APP_TESTNET_ALICE_ZONE }} --command="${{ env.copy_logs_command }}" | |
- name: Refresh images and containers | |
run: gcloud compute ssh ${{ secrets.APP_TESTNET_ALICE_INSTANCE }} --zone=${{ secrets.APP_TESTNET_ALICE_ZONE }} --command="${{ env.refresh_containers_command }}" | |
deploy_testnet_bob: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup GCloud SDK | |
uses: google-github-actions/[email protected] | |
with: | |
project_id: ${{ secrets.GCP_PROJECT }} | |
service_account_key: ${{ secrets.GCP_CE_KEY }} | |
- name: Export docker .env | |
shell: bash | |
run: | | |
echo 'TAG=${{ github.event.client_payload.tag }}' > .env && \ | |
echo '${{ secrets.ENV_TESTNET }}' >> .env | |
- name: Export application config | |
shell: bash | |
run: | | |
echo '${{ secrets.APP_TESTNET_BOB_CONFIG }}' > ./node.yml && \ | |
echo '${{ secrets.APP_TESTNET_BRIDGE_CONFIG }}' > ./bridge.yml | |
- name: Copy files | |
run: | | |
gcloud compute scp --zone=${{ secrets.APP_TESTNET_BOB_ZONE }} ./.env ./docker-compose.yml ./node.yml ./bridge.yml ${{ secrets.APP_TESTNET_BOB_INSTANCE }}:~ && \ | |
gcloud compute scp --zone=${{ secrets.APP_TESTNET_BOB_ZONE }} ./monitoring/grafana/config-overrides.env ${{ secrets.APP_TESTNET_BOB_INSTANCE }}:~/monitoring/grafana | |
- name: Copy logs | |
run: gcloud compute ssh ${{ secrets.APP_TESTNET_BOB_INSTANCE }} --zone=${{ secrets.APP_TESTNET_BOB_ZONE }} --command="${{ env.copy_logs_command }}" | |
- name: Refresh images and containers | |
run: gcloud compute ssh ${{ secrets.APP_TESTNET_BOB_INSTANCE }} --zone=${{ secrets.APP_TESTNET_BOB_ZONE }} --command="${{ env.refresh_containers_command }}" | |
deploy_testnet_carol: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup GCloud SDK | |
uses: google-github-actions/[email protected] | |
with: | |
project_id: ${{ secrets.GCP_PROJECT }} | |
service_account_key: ${{ secrets.GCP_CE_KEY }} | |
- name: Export docker .env | |
shell: bash | |
run: | | |
echo 'TAG=${{ github.event.client_payload.tag }}' > .env && \ | |
echo '${{ secrets.ENV_TESTNET }}' >> .env | |
- name: Export application config | |
shell: bash | |
run: | | |
echo '${{ secrets.APP_TESTNET_CAROL_CONFIG }}' > ./node.yml && \ | |
echo '${{ secrets.APP_TESTNET_BRIDGE_CONFIG }}' > ./bridge.yml | |
- name: Copy files | |
run: | | |
gcloud compute scp --zone=${{ secrets.APP_TESTNET_CAROL_ZONE }} ./.env ./docker-compose.yml ./node.yml ./bridge.yml ${{ secrets.APP_TESTNET_CAROL_INSTANCE }}:~ && \ | |
gcloud compute scp --zone=${{ secrets.APP_TESTNET_CAROL_ZONE }} ./monitoring/grafana/config-overrides.env ${{ secrets.APP_TESTNET_CAROL_INSTANCE }}:~/monitoring/grafana | |
- name: Copy logs | |
run: gcloud compute ssh ${{ secrets.APP_TESTNET_CAROL_INSTANCE }} --zone=${{ secrets.APP_TESTNET_CAROL_ZONE }} --command="${{ env.copy_logs_command }}" | |
- name: Refresh images and containers | |
run: gcloud compute ssh ${{ secrets.APP_TESTNET_CAROL_INSTANCE }} --zone=${{ secrets.APP_TESTNET_CAROL_ZONE }} --command="${{ env.refresh_containers_command }}" | |
deploy_testnet_dave: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup GCloud SDK | |
uses: google-github-actions/[email protected] | |
with: | |
project_id: ${{ secrets.GCP_PROJECT }} | |
service_account_key: ${{ secrets.GCP_CE_KEY }} | |
- name: Export docker .env | |
shell: bash | |
run: | | |
echo 'TAG=${{ github.event.client_payload.tag }}' > .env && \ | |
echo '${{ secrets.ENV_TESTNET }}' >> .env | |
- name: Export application config | |
shell: bash | |
run: | | |
echo '${{ secrets.APP_TESTNET_DAVE_CONFIG }}' > ./node.yml && \ | |
echo '${{ secrets.APP_TESTNET_BRIDGE_CONFIG }}' > ./bridge.yml && \ | |
echo '${{ secrets.APP_TESTNET_ALERT_CONFIG }}' > ./monitoring/alertmanager/config.yml && \ | |
echo '${{ secrets.APP_TESTNET_GRAFANA_CONFIG_ENV }}' > ./monitoring/grafana/config-overrides.env && \ | |
echo '${{ secrets.APP_TESTNET_PROMETHEUS_CONFIG }}' > ./monitoring/prometheus/prometheus.yml && \ | |
echo '${{ secrets.APP_TESTNET_PROMETHEUS_RULES_CONFIG }}' > ./monitoring/prometheus/rules.yml | |
- name: Copy files | |
run: | | |
gcloud compute scp --zone=${{ secrets.APP_TESTNET_DAVE_ZONE }} ./.env ./docker-compose.yml ./node.yml ./bridge.yml ${{ secrets.APP_TESTNET_DAVE_INSTANCE }}:~ && \ | |
gcloud compute scp --zone=${{ secrets.APP_TESTNET_DAVE_ZONE }} ./monitoring/alertmanager/config.yml ./monitoring/alertmanager/email.html ${{ secrets.APP_TESTNET_DAVE_INSTANCE }}:~/monitoring/alertmanager && \ | |
gcloud compute scp --zone=${{ secrets.APP_TESTNET_DAVE_ZONE }} ./monitoring/grafana/config-overrides.env ${{ secrets.APP_TESTNET_DAVE_INSTANCE }}:~/monitoring/grafana && \ | |
gcloud compute scp --zone=${{ secrets.APP_TESTNET_DAVE_ZONE }} ./monitoring/grafana/provisioning/dashboards/dashboards_provider.yml ./monitoring/grafana/provisioning/dashboards/validator_transfers_dashboard.json ${{ secrets.APP_TESTNET_DAVE_INSTANCE }}:~/monitoring/grafana/provisioning/dashboards && \ | |
gcloud compute scp --zone=${{ secrets.APP_TESTNET_DAVE_ZONE }} ./monitoring/grafana/provisioning/datasources/datasources.yml ${{ secrets.APP_TESTNET_DAVE_INSTANCE }}:~/monitoring/grafana/provisioning/datasources && \ | |
gcloud compute scp --zone=${{ secrets.APP_TESTNET_DAVE_ZONE }} ./monitoring/prometheus/prometheus.yml ./monitoring/prometheus/rules.yml ${{ secrets.APP_TESTNET_DAVE_INSTANCE }}:~/monitoring/prometheus | |
- name: Copy logs | |
run: gcloud compute ssh ${{ secrets.APP_TESTNET_DAVE_INSTANCE }} --zone=${{ secrets.APP_TESTNET_DAVE_ZONE }} --command="${{ env.copy_logs_command }}" | |
- name: Refresh images and containers | |
run: gcloud compute ssh ${{ secrets.APP_TESTNET_DAVE_INSTANCE }} --zone=${{ secrets.APP_TESTNET_DAVE_ZONE }} --command="${{ env.refresh_metrics_containers_command }}" |