Skip to content

Added EDC Connector #373

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions edc/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# syntax=docker/dockerfile:1
FROM stackable/image/java-base

ARG PRODUCT
ARG RELEASE

LABEL name="Hello World" \
maintainer="[email protected]" \
vendor="Stackable GmbH" \
version="${PRODUCT}" \
release="${RELEASE}" \
summary="The Stackable image for Apache Druid." \
description="This image is deployed by the Stackable Operator for Apache Druid."

# https://github.com/hadolint/hadolint/wiki/DL4006
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

RUN microdnf update && \
microdnf clean all

USER stackable
WORKDIR /stackable

RUN curl -L https://repo.stackable.tech/repository/packages/edc/dataspace-connector-${PRODUCT}.jar -o connector.jar

CMD ["java", "-Dedc.fs.config=./mount/config/config.properties", "-jar", "connector.jar" ]
8 changes: 8 additions & 0 deletions edc/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# EDC Connector Image
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should mention that it is not part of SDP. Please coordinate with @stackfab or @stefanigel on wording

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've labelled it as a "technology preview" component


Links:

- [The official Connector repo](https://github.com/eclipse-edc/Connector)
- [The IONOS S3 extension](https://github.com/Digital-Ecosystems/edc-ionos-s3)
- [Our EDC Operator](https://github.com/stackabletech/edc-operator/)
- [The EDC Connector build - our own](https://github.com/stackabletech/edc-operator/tree/main/edc-connector) based off of the IONOS Repo.
9 changes: 9 additions & 0 deletions image_tools/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,15 @@
},
],
},
{
"name": "edc",
"versions": [
{
"product": "77c6e17",
"java-base": "17",
},
],
},
{
"name": "hadoop",
"versions": [
Expand Down