How to build a new service for the Wellcome Digital Platform
Services for the Wellcome Digital Platform are deployed on AWS and are likely to be a mix of ECS tasks and lambdas. The languages we use are Scala & Python.
There are 3 kinds of project currently in use:
- ECS "script" Tasks: One off or scheduled tasks running via the ECS RunTask API.
- ECS Services: Long running services e.g. APIs
- Lambdas: Very short running or scheduled tasks taking advantage of AWS event streams where appropriate.
-
Infrastructure description (
./terraform
)- Using terraform (separated by stack where appropriate). It's expected that some services will share terraform state where there is a high degree of coupling.
- Making use of shared terraform modules from project root (
ecs_service
etc)
-
Makefile
: Describing project specific tasks. Where steps fail they should exit with a non-zero exit code status. The following steps are expected:build
: build deployment artefacts locallytest
: run project tests There are container images provided for running simple linting/testing steps.run
: run project locallypublish
: publish project artefacts to remote store before deployment: This is likely to push your container description(s) to ECR/docker hub- Terraform tasks using provided
terraform_ci
container:tf-plan
tf-apply
-
README.md
- With the following suggested sections:
- Purpose of project
- High level technical overview of services (how it interacts with other services, dependencies)
- With the following suggested sections:
Currently our project builds in Travis CI.
Add your Make
tasks to the build matrix in /.travis.yml
.
env:
global:
- ...
matrix:
- TASK=my_project-test
- TASK=...
We use Grafana at: https://monitoring.wellcomecollection.org
This is available only to Wellcome internal IP addresses.
You can build your own dashboards based on CloudWatch data that will be persisted when saved.
ECS Cluster and Service status can be reviewed using our ECS Dashboard.
The dashboard will update automatically to include new services and clusters within the digital-platform
AWS Account.
CloudWatch Alarms can be directed to the post_to_slack
lambda via an SNS topic.
Alerts will appear in the #digital-platform
Wellcome Slack channel.