Skip to content

Commit 9b4e759

Browse files
fix: use correct image path
1 parent 41db820 commit 9b4e759

10 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/publish-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727

2828
jobs:
2929
build-and-push:
30-
name: "Build and publish Docker images"
30+
name: "Build docker image for ${{ matrix.name }}"
3131
runs-on: ubuntu-latest
3232
if: github.repository_owner == 'eclipse-edc'
3333
strategy:

.github/workflows/run-e2e-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ jobs:
6363
- name: "Load runtime images into KinD"
6464
run: |
6565
kind load docker-image -n dcp-demo \
66-
ghcr.io/eclipse-edc/mvd/controlplane:latest \
67-
ghcr.io/eclipse-edc/mvd/dataplane:latest \
68-
ghcr.io/eclipse-edc/mvd/identity-hub:latest \
69-
ghcr.io/eclipse-edc/mvd/issuerservice:latest
66+
ghcr.io/eclipse-edc/minimumviabledataspace/controlplane:latest \
67+
ghcr.io/eclipse-edc/minimumviabledataspace/dataplane:latest \
68+
ghcr.io/eclipse-edc/minimumviabledataspace/identity-hub:latest \
69+
ghcr.io/eclipse-edc/minimumviabledataspace/issuerservice:latest
7070
7171
- name: "Update image pull policy"
7272
run: |-

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,9 @@ All commands are executed from the **repository's root folder** unless stated ot
218218
> Since this is not a production deployment, all applications are deployed _in the same cluster_ and in the same
219219
> namespace, plainly for the sake of simplicity.
220220
221-
This builds the runtime images and creates the following docker images: `ghcr.io/eclipse-edc/mvd/controlplane:latest`,
222-
`ghcr.io/eclipse-edc/mvd/dataplane:latest`, `ghcr.io/eclipse-edc/mvd/issuerservice:latest` and
223-
`ghcr.io/eclipse-edc/mvd/identity-hub:latest` in the local docker image cache.
221+
This builds the runtime images and creates the following docker images: `ghcr.io/eclipse-edc/minimumviabledataspace/controlplane:latest`,
222+
`ghcr.io/eclipse-edc/minimumviabledataspace/dataplane:latest`, `ghcr.io/eclipse-edc/minimumviabledataspace/issuerservice:latest` and
223+
`ghcr.io/eclipse-edc/minimumviabledataspace/identity-hub:latest` in the local docker image cache.
224224

225225
PostgreSQL and Hashicorp Vault obviously require additional configuration, which is handled by the Kubernetes manifests
226226
via batch jobs.
@@ -257,10 +257,10 @@ grep -rlZ "imagePullPolicy: Always" k8s | xargs sed -i "s/imagePullPolicy: Alway
257257

258258
# Load docker images into KinD
259259
kind load docker-image \
260-
ghcr.io/eclipse-edc/mvd/controlplane:latest \
261-
ghcr.io/eclipse-edc/mvd/dataplane:latest \
262-
ghcr.io/eclipse-edc/mvd/identity-hub:latest \
263-
ghcr.io/eclipse-edc/mvd/issuerservice:latest -n mvd
260+
ghcr.io/eclipse-edc/minimumviabledataspace/controlplane:latest \
261+
ghcr.io/eclipse-edc/minimumviabledataspace/dataplane:latest \
262+
ghcr.io/eclipse-edc/minimumviabledataspace/identity-hub:latest \
263+
ghcr.io/eclipse-edc/minimumviabledataspace/issuerservice:latest -n mvd
264264
```
265265

266266
#### 4.2.3 Deploy MVD components

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ subprojects {
3939
tasks.register("dockerize", DockerBuildImage::class) {
4040
val dockerContextDir = project.projectDir
4141
dockerFile.set(file("$dockerContextDir/src/main/docker/Dockerfile"))
42-
images.add("ghcr.io/eclipse-edc/mvd/${project.name}:${project.version}")
43-
images.add("ghcr.io/eclipse-edc/mvd/${project.name}:latest")
42+
images.add("ghcr.io/eclipse-edc/minimumviabledataspace/${project.name}:${project.version}")
43+
images.add("ghcr.io/eclipse-edc/minimumviabledataspace/${project.name}:latest")
4444
// specify platform with the -Dplatform flag:
4545
if (System.getProperty("platform") != null)
4646
platform.set(System.getProperty("platform"))

k8s/consumer/application/controlplane.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
spec:
3535
containers:
3636
- name: controlplane
37-
image: ghcr.io/eclipse-edc/mvd/controlplane:latest
37+
image: ghcr.io/eclipse-edc/minimumviabledataspace/controlplane:latest
3838
imagePullPolicy: Always
3939
envFrom:
4040
- configMapRef: { name: controlplane-config }

k8s/consumer/application/identityhub.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
spec:
3434
containers:
3535
- name: identityhub
36-
image: ghcr.io/eclipse-edc/mvd/identity-hub:latest
36+
image: ghcr.io/eclipse-edc/minimumviabledataspace/identity-hub:latest
3737
imagePullPolicy: Always
3838
envFrom:
3939
- configMapRef:

k8s/issuer/application/issuerservice.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
spec:
3434
containers:
3535
- name: issuerservice
36-
image: ghcr.io/eclipse-edc/mvd/issuerservice:latest
36+
image: ghcr.io/eclipse-edc/minimumviabledataspace/issuerservice:latest
3737
imagePullPolicy: Always
3838
ports:
3939
- containerPort: 80

k8s/provider/application/controlplane.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
spec:
3535
containers:
3636
- name: controlplane
37-
image: ghcr.io/eclipse-edc/mvd/controlplane:latest
37+
image: ghcr.io/eclipse-edc/minimumviabledataspace/controlplane:latest
3838
imagePullPolicy: Always
3939
envFrom:
4040
- configMapRef: { name: controlplane-config }

k8s/provider/application/dataplane.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
spec:
3535
containers:
3636
- name: dataplane
37-
image: ghcr.io/eclipse-edc/mvd/dataplane:latest
37+
image: ghcr.io/eclipse-edc/minimumviabledataspace/dataplane:latest
3838
imagePullPolicy: Always
3939
envFrom:
4040
- configMapRef:

k8s/provider/application/identityhub.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
spec:
3434
containers:
3535
- name: identityhub
36-
image: ghcr.io/eclipse-edc/mvd/identity-hub:latest
36+
image: ghcr.io/eclipse-edc/minimumviabledataspace/identity-hub:latest
3737
imagePullPolicy: Always
3838
envFrom:
3939
- configMapRef:

0 commit comments

Comments
 (0)