Used tools
AWS and Kubernetes services
Docker
Terraform
Deployment process
The backend server is an application running on JVM written in Kotlin and built by Gradle.
Versions:
Kotlin 1.5.20
JVM 11+ (compatibility with 11)
Gradle 7.1
The server uses the PostgreSQL as a data storage.
We deploy a new version of the Loono Backend on commit in this way:
Docker image creation with Dockerfile
Building the application by Gradle build to create a bootable JAR file
Creation a final docker image with the application JAR
Upload the Docker image to the Docker repository (ECR)
Deployment of the new server version to the AWS
Startup of the new version
If the startup succeeds then the new version replaces the old one
Pod parameters
Hardware configuration:
Memory: 512 (0.5 GB)
CPU: 256 (.25 vCPU)
Application configuration:
Instances: 1
DB configuration:
Allocated space: 20 GB
Maximum space: 100 GB
Type and engine: PostgreSQL 12.5
Backup retention period: 7 days
Testing and CI/CD
There is several testing levels to cover the quality.
The build - we cover main functionality by unit tests (code coverage is available by jacoco plugin in the project)
We have the CI pipeline in the Github Actions executing the project build on each commit.
The tests are part of docker image building, too.
The deployment
The deployment succeeds if the health check passed 3-times.
We have post-deploy tests which validate health check and the API documentation after the deployment itself.