Deploy Industry Core Hub either in a Kubernetes cluster (via Helm) or locally.
Tip: If using Minikube, run:
minikube start --cpus=4 --memory=8Gb minikube addons enable ingress
You also need a running DTR and EDC Connector. See the Umbrella deployment guide.
values.yaml
cp charts/industry-core-hub/values.yaml ./your-values.yaml
Edit your-values.yaml
under backend.configuration
:
backend:
configuration:
authorization:
enabled: true
apiKey:
key: "X-Api-Key"
value: "<<example>>"
# -- Database connection config; database connection settings are inferred from postgresql or externalDatabase sections.
database:
echo: true
# -- EDC (Eclipse Dataspace Connector) configuration
edc:
controlplane:
hostname: "https://connector.control.plane"
apikeyheader: "X-Api-Key"
apikey: "<<example>>"
managementpath: "/management"
protocolPath: "/api/v1/dsp"
catalogPath: "/catalog"
dataplane:
hostname: "https://connector.data.plane"
publicPath: "/api/public"
# -- Digital Twin Registry configuration
digitalTwinRegistry:
hostname: "https://dataprovider-dtr.tx.test"
apiPath: "/api/v3"
# -- Set this to the urlPrefix defined in your DTR values. [Default value](https://github.com/eclipse-tractusx/sldt-digital-twin-registry/blob/cc9c63c12d96e48050a1b24eca022277075cf6c7/charts/registry/values.yaml#L86)
uri: "/semantics/registry"
lookup:
# -- Same as the uri above
uri: "/semantics/registry"
For all chart options, see the Helm chart README.
Use kubectl port-forward for localhost access, or set up an Ingress resource (with a controller) in the values.yaml
to expose your services over HTTP(S).
helm repo add tractusx-dev https://eclipse-tractusx.github.io/
helm repo update
helm install ichub -f your-values.yaml tractusx-dev/industry-core-hub
To use as a dependency in your own chart:
dependencies:
- name: industry-core-hub
repository: https://eclipse-tractusx.github.io/industry-core-hub
version: 0.1.x
helm uninstall ichub
cd ichub-backend/
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Edit config/configuration.yml with your config
# run
python -m main --host 0.0.0.0 --port 8000
Open the Swagger UI at http://localhost:8000/docs.
cd ichub-frontend/
npm install
Set on index.html your backend url
<script>
const ENV = {
REQUIRE_HTTPS_URL_PATTERN: "false",
ICHUB_BACKEND_URL: "http://localhost:8000"
}
</script>
Run the frontend
npm run dev
Visit http://localhost:5173.
This work is licensed under the CC-BY-4.0.