-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
17 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,24 +9,20 @@ on: | |
env: | ||
ENVIRONMENT: "test" | ||
CARDANO_NETWORK: "sanchonet" | ||
DOMAIN: "test-sanchonet.govtool.byron.network" | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy app | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./scripts/govtool | ||
env: | ||
DBSYNC_POSTGRES_DB: "cexplorer" | ||
DBSYNC_POSTGRES_PASSWORD: "pSa8JCpQOACMUdGb" | ||
DBSYNC_POSTGRES_USER: "postgres" | ||
GA_CLIENT_EMAIL: ${{ secrets.GA_CLIENT_EMAIL }} | ||
GA_PRIVATE_KEY: ${{ secrets.GA_PRIVATE_KEY }} | ||
GRAFANA_ADMIN_PASSWORD: ${{ secrets.GRAFANA_ADMIN_PASSWORD }} | ||
GRAFANA_SLACK_OAUTH_TOKEN: ${{ secrets.GRAFANA_SLACK_OAUTH_TOKEN }} | ||
GRAFANA_SLACK_RECIPIENT: ${{ secrets.GRAFANA_SLACK_RECIPIENT }} | ||
GRAFANA_SLACK_OAUTH_TOKEN: ${{ secrets.GRAFANA_SLACK_OAUTH_TOKEN }} | ||
GTM_ID: ${{ secrets.GTM_ID }} | ||
IP_ADDRESS_BYPASSING_BASIC_AUTH1: ${{ secrets.IP_ADDRESS_BYPASSING_BASIC_AUTH1 }} | ||
IP_ADDRESS_BYPASSING_BASIC_AUTH2: ${{ secrets.IP_ADDRESS_BYPASSING_BASIC_AUTH2 }} | ||
|
@@ -45,28 +41,21 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v3 | ||
with: | ||
aws-access-key-id: ${{ secrets.GHA_AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.GHA_AWS_SECRET_ACCESS_KEY }} | ||
aws-region: eu-west-1 | ||
|
||
- name: Login to AWS ECR | ||
uses: aws-actions/configure-aws-credentials@v2 | ||
with: | ||
aws-region: eu-west-1 | ||
|
||
- name: Setup SSH agent | ||
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.GHA_SSH_PRIVATE_KEY }} | ||
ssh-private-key: ${{ secrets.TEST_STACK_SSH_KEY }} | ||
|
||
- name: Deploy app | ||
run: | | ||
make --debug=b all | ||
- name: Reprovision Grafana | ||
run: | | ||
sleep 30 # give grafana time to start up | ||
make --debug=b reload-grafana | ||
- name: Run Ansible playbook | ||
uses: dawidd6/action-ansible-playbook@v2 | ||
with: | ||
playbook: playbook.yml | ||
directory: ./tests/test-infrastructure | ||
key: ${{ secrets.TEST_STACK_SSH_KEY }} | ||
inventory: | | ||
[test_server] | ||
${{ secrets.TEST_STACK_SERVER_IP }} ansible_user=ec2-user | ||
options: | | ||
--verbose | ||
env: | ||
GOVTOOL_TAG: ${{ github.sha }} |
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 |
---|---|---|
|
@@ -12,4 +12,4 @@ | |
"sentrydsn": "https://username:[email protected]/id", | ||
"metadatavalidationhost": "http://metadata-validation", | ||
"metadatavalidationport": 3000 | ||
} | ||
} |