A TEADAL node is the cornerstone platform developed in the in TEADAL project to host a toolset able to simplify the data sharing for analytical purposes
The TEADAL node is built on a K8s cluster (now we have tested with MicroK8s) and requires the following tools:
- ArgoCD to automate the deployment
- Istio control plane
- Minio to store system files and also available as data lake storage
- Keycloak for Identity and Authentication
- Jaeger for advance tracing used to monitor the activities
- OPA as policy manager
In addition to these tools, TEADAL project is providing advanced tools to enable data sharing among TEADAL nodes:
- Advocate
- Catalogue
- Policy manager
- Pipeline generator
- Fork this repo
- Download the installation file on your machine [*]
- Make the file installation file executable
sudo chmod 777 install-teadal.sh - Run the installation file
./install-teadal.sh -u <git repo url> [-b <branch name> -d <download dir>]where:<git repo url>is the URL of the forked repo<branch name>the branch of the repo, (default:HEAD)<download dir>directory where the repo is cloned (default:./teadal.node)
Once the installation has terminated, run the following command to set the required secrets
nix run .#node-config -- -microk8s basicnode-secrets[*] We recommend to deploy a TEADAL node on a machine with 8 cores, 32 GB memory, 100GB storage. Depending on the TEADAL tools installed less or more than these resources could be required.
Additional information about the installation process is available in the Teadal Node Installation guide
To add a TEADAL tools follow Teadal Tool Installation guide
A Federated Data Product is defined by its descriptor which has the following format
fdp-descriptor:
name: <name_of_the_FDP>
version: 1.0.0
description: >
FDP descriptor used to test
deployment: microk8s_deployment.yaml
resources:
- additional.yaml The microk8s_deployment file follows the format required by microk8s. An example is here. In case the deployment file requires additional files they can be defined in the resources list
Having the descriptor execute the following commands:
cd <download dir>/nix/pkgs/fdp-manager
nix run .#fdp-manager deploy <descriptorfile>For testing, under the example folder there is the fdp-sync-dummy FDP that can be used.
nix run .#fdp-manager deploy ~/teadal.node/examples/fdp-sync-dummy/descriptor.yamlNote! To make the deployment effective, the changes in the repository must be committed
For additional information about the FDP-manager refer to the related project
Additional information about the deployment is provided here
