Core engine¶
- Main author - HEIA-FR & HEIG-VD
- Code
- Deployment configuration (backend) (frontend)
- Staging (backend) (frontend)
- Production (backend) (frontend)
Description¶
The Core engine allows to create and manage pipelines of microservices.
The Core engine is split in two main services:
- Core engine Backend - The API to register services and create pipelines
- Core engine Frontend - The user interface to interact with the backend
Another service is available, GlitchTip, to centralize the logging errors thrown by the Core engine and its services.
Backend¶
The Core engine Backend is built using Python 3.11, FastAPI, SQLModel and Domain-driven design.
The API documentation is automatically generated by FastAPI using the OpenAPI standard. A user-friendly interface provided by Swagger is available under the /docs
route, where the endpoints of the services are described.
Diagrams¶
UML diagram (current version)¶
This diagram represents the current version of the Core engine. A future and ideal version is available in the UML diagram (future and ideal version).
The models defined for each class is represented as follow:
UML diagram (future and ideal version)¶
This diagram represents the future and ideal version of the Core engine.
At the time being, the Core engine is not fully implemented as described in the diagram, mostly due to SQLModel limitations with inherence.
The models defined for each class is represented as follow:
Sequence¶
A normal sequence of events when launching a request to a service is represented as follows:
Environment variables¶
All environment variables are described in the .env
file.
The environment variables can be overwritten during the CI/CD pipeline described in the backend.yml
GitHub workflow file.
Run the tests with Python¶
Info
You might need to initialize a virtual environment before running the tests.
Check the Start the Core engine locally > Start the Core engine locally with plain Python and Node.js to initialize and activate a virtual environment.
For each module a test file is available to check the correct behavior of the code. The tests are run using the pytest
library with code coverage check. To run the tests, use the following command inside the src
folder:
Frontend¶
The Frontend is built using React and TypeScript.
Environment variables¶
All environment variables are described in the .env
file.
The environment variables can be overwritten during the CI/CD pipeline described in the frontend.yml
GitHub workflow file.
Build the application¶
In the frontend
directory, build the Core engine Frontend with the following commands.
The output of the build is in the build
directory.
Once a React application is built, the environment variables cannot be changed.
Build and run the Docker image¶
In order to build the Docker image, the application must be built beforehand. Then, the Docker image can be built with the following commands.
The Core engine Frontend is available on http://localhost:3000.
Q: Why don't we build the React application within the Docker image?
A: This setup allows us to speed up the build process of the Docker image: it does not need to download and install all dependencies every time the
package.json
file is updated. In a CI/CD set up, thenode_modules
can be cached in thebuild
stage and the output can be passed to thepublish
stage.
Start the Core engine locally¶
Tip
If you are not familiar with the Core engine and its services, we recommend to follow the Getting started guide first.
You have several options to start the Core engine locally:
- Start the Core engine locally with Docker Compose (recommended)
- Start the Core engine locally with plain Python and Node.js
- Start the Core engine locally with minikube and official Docker images
- Start the Core engine locally with minikube and local Docker images
In the backend
directory, start the Core engine Backend with the following commands:
Access the Core engine Backend documentation at http://localhost:8080/docs.
In the frontend
directory, start the Core engine Frontend with the following commands:
Access the Core engine Frontend on http://localhost:3000.
In the backend
directory, start the Core engine Backend with the following commands:
Start the application.
Access the Core engine Backend documentation at http://localhost:8080/docs.
In the frontend
directory, start the Core engine Frontend with the following commands:
Access the Core engine Frontend on http://localhost:3000.
Start the Core engine Backend with the following commands. This will start the Core engine with the official Docker images that are hosted on GitHub.
In the backend
directory, start the Core engine Backend with the following commands:
Create a tunnel to access the Kubernetes cluster from the local machine. The terminal in which the tunnel is created must stay open:
Access the Core engine Backend documentation on http://localhost:8080/docs.
Start the Core engine Frontend with the following commands. This will start the Core engine Frontend with the official Docker images that are hosted on GitHub.
In the frontend
directory, start the Core engine Frontend with the following commands.
Create a tunnel to access the Kubernetes cluster from the local machine. The terminal in which the tunnel is created must stay open.
Access the Core engine Frontend on http://localhost:3000.
Warning
The Core engine Backend StatefulSet (core-engine.stateful.yml
file) must be deleted and recreated every time a new Docker image is created.
In the backend
directory, build the Docker image with the following commands:
In the backend
directory, start the Core engine Backend with the following commands:
Create a tunnel to access the Kubernetes cluster from the local machine. The terminal in which the tunnel is created must stay open:
Access the Core engine Backend documentation on http://localhost:8080/docs.
Warning
The service StatefulSet (frontend.stateful.yml
file) must be deleted and recreated every time a new Docker image is created.
Start the service with the following commands. This will start the service with the a local Docker image for the service.
In the frontend
directory, build the Docker image with the following commands.
In the frontend
directory, start the service with the following commands.
Create a tunnel to access the Kubernetes cluster from the local machine. The terminal in which the tunnel is created must stay open.
Access the Core engine Frontend on http://localhost:3000.