Skip to content

Commit

Permalink
push live (#50)
Browse files Browse the repository at this point in the history
* re-instate master deployments

* moving gateway to us-e-2

* adding eu-w-1, turning back on all deploys
  • Loading branch information
nymd authored Mar 31, 2021
1 parent 7106b5d commit 8404ba2
Show file tree
Hide file tree
Showing 2 changed files with 154 additions and 0 deletions.
76 changes: 76 additions & 0 deletions .github/workflows/production-eu-west-1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
name: Production Deployment eu-west-1

on:
push:
branches: [ master ]

jobs:
deploy:
name: Gateway
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1

- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1

- name: Make envfile eu-west-1
uses: SpicyPizza/create-envfile@v1
with:
envkey_GATEWAY_CLIENT_PRIVATE_KEY: ${{ secrets.POCKET_NETWORK_PRODUCTION_CLIENT_PRIVATE_KEY }}
envkey_GATEWAY_CLIENT_PASSPHRASE: ${{ secrets.POCKET_NETWORK_PRODUCTION_CLIENT_PASSPHRASE }}
envkey_MONGO_ENDPOINT: ${{ secrets.MONGO_PRODUCTION_ENDPOINT }}
envkey_DATABASE_ENCRYPTION_KEY: ${{ secrets.DATABASE_PRODUCTION_ENCRYPTION_KEY }}
envkey_PG_CONNECTION: ${{ secrets.PG_PRODUCTION_CONNECTION }}
envkey_PG_CERTIFICATE: ${{ secrets.PG_PRODUCTION_CERTIFICATE }}
envkey_AWS_S3_ACCESS_KEY_ID: ${{ secrets.AWS_S3_ACCESS_KEY_ID }}
envkey_AWS_S3_SECRET_ACCESS_KEY: ${{ secrets.AWS_S3_SECRET_ACCESS_KEY }}
envkey_AWS_S3_LOGS_BUCKET: pocket-gateway
envkey_AWS_S3_LOGS_FOLDER: logs/mainnet
envkey_AWS_S3_LOGS_REGION: eu-west-1
envkey_DISPATCH_URL: https://node1.mainnet.pokt.network,https://node2.mainnet.pokt.network,https://node3.mainnet.pokt.network,https://node4.mainnet.pokt.network,https://node5.mainnet.pokt.network,https://node6.mainnet.pokt.network,https://node7.mainnet.pokt.network,https://node8.mainnet.pokt.network,https://node9.mainnet.pokt.network,https://node10.mainnet.pokt.network,https://node11.mainnet.pokt.network,https://node12.mainnet.pokt.network,https://node13.mainnet.pokt.network,https://node14.mainnet.pokt.network,https://node15.mainnet.pokt.network,https://node16.mainnet.pokt.network,https://node17.mainnet.pokt.network,https://node18.mainnet.pokt.network,https://node19.mainnet.pokt.network,https://node20.mainnet.pokt.network
envkey_FALLBACK_URL: https://alt1.mainnet.pokt.network,https://alt2.mainnet.pokt.network,https://alt3.mainnet.pokt.network,https://alt4.mainnet.pokt.network,https://alt5.mainnet.pokt.network,https://alt6.mainnet.pokt.network,https://alt7.mainnet.pokt.network,https://alt8.mainnet.pokt.network,https://alt9.mainnet.pokt.network,https://alt10.mainnet.pokt.network
envkey_REDIS_ENDPOINT: gateway.dj2dgc.ng.0001.euw1.cache.amazonaws.com:6379
envkey_REDIS_PORT: 6379
envkey_POCKET_SESSION_BLOCK_FREQUENCY: 4
envkey_POCKET_BLOCK_TIME: 1038000
envkey_POCKET_RELAY_RETRIES: 0
file_name: .env

- name: Build, tag, and push image to Amazon ECR
id: build-image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: gateway
IMAGE_TAG: latest
run: |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG"
- name: Fill in the new image ID / eu-west-1
id: task-def-eu-west-1
uses: aws-actions/amazon-ecs-render-task-definition@v1
with:
task-definition: pocket-gateway/ecs-task-eu-west-1.json
container-name: gateway
image: ${{ steps.build-image.outputs.image }}

- name: Deploy / eu-west-1
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
with:
task-definition: ${{ steps.task-def-eu-west-1.outputs.task-definition }}
service: gateway-service
cluster: gateway
wait-for-service-stability: true

78 changes: 78 additions & 0 deletions pocket-gateway/ecs-task-eu-west-1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
"ipcMode": null,
"executionRoleArn": "arn:aws:iam::059424750518:role/ecsTaskExecutionRole",
"containerDefinitions": [
{
"dnsSearchDomains": null,
"environmentFiles": null,
"logConfiguration": {
"logDriver": "awslogs",
"secretOptions": null,
"options": {
"awslogs-group": "/ecs/gateway",
"awslogs-region": "eu-west-1",
"awslogs-stream-prefix": "ecs"
}
},
"entryPoint": [],
"portMappings": [
{
"hostPort": 3000,
"protocol": "tcp",
"containerPort": 3000
}
],
"environment": [],
"command": [],
"linuxParameters": null,
"cpu": 4096,
"resourceRequirements": null,
"ulimits": [
{
"name": "nofile",
"hardLimit": 65535,
"softLimit": 65535
}
],
"dnsServers": null,
"mountPoints": [],
"workingDirectory": null,
"dockerSecurityOptions": null,
"memory": null,
"memoryReservation": 8192,
"volumesFrom": [],
"stopTimeout": null,
"image": "059424750518.dkr.ecr.eu-west-1.amazonaws.com/gateway:latest",
"startTimeout": null,
"firelensConfiguration": null,
"dependsOn": null,
"disableNetworking": null,
"interactive": null,
"healthCheck": null,
"essential": true,
"links": [],
"hostname": null,
"extraHosts": null,
"pseudoTerminal": null,
"user": null,
"readonlyRootFilesystem": null,
"dockerLabels": null,
"systemControls": null,
"privileged": null,
"name": "gateway"
}
],
"placementConstraints": [],
"memory": "8192",
"taskRoleArn": null,
"family": "gateway",
"pidMode": null,
"requiresCompatibilities": [
"FARGATE"
],
"networkMode": "awsvpc",
"cpu": "4096",
"inferenceAccelerators": null,
"proxyConfiguration": null,
"volumes": []
}

0 comments on commit 8404ba2

Please sign in to comment.