Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: eclipse-tractusx/knowledge-agents-aas-bridge
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 400497ccb89d72fdd5675509039194bf2c661eac
Choose a base ref
..
head repository: eclipse-tractusx/knowledge-agents-aas-bridge
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 042da12a84334a5493d31898deb7f408e520cc67
Choose a head ref
Showing with 13 additions and 13 deletions.
  1. +1 −1 .github/workflows/build.yml
  2. +1 −1 README.md
  3. +2 −2 charts/aas-bridge/Chart.yaml
  4. +2 −2 charts/aas-bridge/README.md
  5. +1 −1 pom.xml
  6. +2 −2 sparql-aas/README.md
  7. +1 −1 sparql-aas/pom.xml
  8. +2 −2 sparql-aas/src/main/docker/Dockerfile
  9. +1 −1 upgrade_version.sh
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -143,7 +143,7 @@ jobs:
type=semver,pattern={{version}}
type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=1.13.7-SNAPSHOT,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
type=raw,value=1.14.23-SNAPSHOT,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
# build in any case, but push only main and version tag settings
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -110,7 +110,7 @@ kubectl wait --namespace ingress-nginx \
--selector=app.kubernetes.io/component=controller \
--timeout=90s
# transfer images
kind load docker-image docker.io/tractusx/aas-bridge:1.13.7-SNAPSHOT --name ka
kind load docker-image docker.io/tractusx/aas-bridge:1.14.23-SNAPSHOT --name ka
# run container test
ct install --charts charts/aas-bridge
```
4 changes: 2 additions & 2 deletions charts/aas-bridge/Chart.yaml
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ home: https://github.com/eclipse-tractusx/knowledge-agents-aas-bridge/
sources:
- https://github.com/eclipse-tractusx/knowledge-agents-aas-bridge/tree/main/sparql-aas
type: application
appVersion: "1.13.7-SNAPSHOT"
version: 1.13.7-SNAPSHOT
appVersion: "1.14.23-SNAPSHOT"
version: 1.14.23-SNAPSHOT
maintainers:
- name: 'Tractus-X Knowledge Agents Team'
4 changes: 2 additions & 2 deletions charts/aas-bridge/README.md
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@

# aas-bridge

![Version: 1.13.7-SNAPSHOT](https://img.shields.io/badge/Version-0.13.6--SNAPSHOT-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.13.7-SNAPSHOT](https://img.shields.io/badge/AppVersion-0.13.6--SNAPSHOT-informational?style=flat-square)
![Version: 1.14.23-SNAPSHOT](https://img.shields.io/badge/Version-0.13.6--SNAPSHOT-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.14.23-SNAPSHOT](https://img.shields.io/badge/AppVersion-0.13.6--SNAPSHOT-informational?style=flat-square)

A Helm chart for the Tractus-X Knowledge Agents AAS Bridge which is a container to provide an AAS server/registry on top of a knowledge graph/SPARQL landscape.

@@ -32,7 +32,7 @@ This chart has no prerequisites.
## TL;DR
```shell
$ helm repo add eclipse-tractusx https://eclipse-tractusx.github.io/charts/dev
$ helm install my-release eclipse-tractusx/aas-bridge --version 1.13.7-SNAPSHOT
$ helm install my-release eclipse-tractusx/aas-bridge --version 1.14.23-SNAPSHOT
```

## Maintainers
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.tractusx.agents</groupId>
<artifactId>aas</artifactId>
<version>1.13.7-SNAPSHOT</version>
<version>1.14.23-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Tractus-X Knowledge Agents AAS Bridges</name>
<description>Provides Implementations for Bridging Knowledge Agents and AAS</description>
4 changes: 2 additions & 2 deletions sparql-aas/README.md
Original file line number Diff line number Diff line change
@@ -87,7 +87,7 @@ mvn -s ../../../settings.xml install -Pwith-docker-image
Alternatively, after a sucessful [build](#building) the docker image of the Sparql-To-AAS bridge is created using

```console
docker build -t tractusx/aas-bridge:1.13.7-SNAPSHOT -f src/main/docker/Dockerfile .
docker build -t tractusx/aas-bridge:1.14.23-SNAPSHOT -f src/main/docker/Dockerfile .
```

To run the docker image against a local knowledge graph, you could invoke this command
@@ -97,7 +97,7 @@ docker run -p 8443:8443 \
-v $(pwd)/resources:/app/resources \
-e "PROVIDER_SPARQL_ENDPOINT=http://oem-provider-agent:8082/sparql" \
-e "PROVIDER_CREDENTIAL_BASIC=Basic Zm9vOg==" \
tractusx/aas-bridge:1.13.7-SNAPSHOT
tractusx/aas-bridge:1.14.23-SNAPSHOT
````

Afterwards, you should be able to access the [local AAS endpoint](https://localhost:8443/) via REST
2 changes: 1 addition & 1 deletion sparql-aas/pom.xml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@
<parent>
<groupId>org.eclipse.tractusx.agents</groupId>
<artifactId>aas</artifactId>
<version>1.13.7-SNAPSHOT</version>
<version>1.14.23-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

4 changes: 2 additions & 2 deletions sparql-aas/src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -18,13 +18,13 @@
# SPDX-License-Identifier: Apache-2.0


FROM alpine:3.20.1 AS otel
FROM alpine:3.20.2 AS otel

ENV OTEL_AGENT_LOCATION "https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v1.27.0/opentelemetry-javaagent.jar"

HEALTHCHECK NONE

RUN apk update && apk add curl=8.5.0-r0 --no-cache
RUN apk update && apk add curl=8.9.0-r0 --no-cache
RUN curl -L --proto "=https" -sSf ${OTEL_AGENT_LOCATION} --output /tmp/opentelemetry-javaagent.jar

FROM eclipse-temurin:22_36-jre-alpine
2 changes: 1 addition & 1 deletion upgrade_version.sh
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
#
# SPDX-License-Identifier: Apache-2.0

OLD_VERSION=1.13.7-SNAPSHOT
OLD_VERSION=1.14.23-SNAPSHOT
echo Upgrading from $OLD_VERSION to $1
PATTERN=s/$OLD_VERSION/$1/g
LC_ALL=C