Skip to content
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

ci: switch to the hyperledger organization in publishing the image to ghc… #984

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<img src="docs/images/logos/atala-prism-logo.png" alt="atala-prism-logo" width="513px" height="99px" />
</a>
<br>
<i> <font size="18"> Open Enterprise Cloud Agent </font> </i>
<i> <font size="18">Identus Cloud Agent</font> </i>
<br>
<br>
<a href='https://coveralls.io/github/input-output-hk/atala-prism-building-blocks?branch=main'><img src='https://coveralls.io/repos/github/input-output-hk/atala-prism-building-blocks/badge.svg?branch=main&amp;t=91BUzX&kill_cache=1' alt='Coverage Status' /></a>
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import sbtbuildinfo.BuildInfoPlugin.autoImport.*

inThisBuild(
Seq(
organization := "io.iohk.atala",
organization := "org.hyperledger",
scalaVersion := "3.3.1",
fork := true,
run / connectInput := true,
releaseUseGlobalVersion := false,
versionScheme := Some("semver-spec"),
githubOwner := "input-output-hk",
githubRepository := "atala-prism-building-blocks",
githubOwner := "hyperledger",
githubRepository := "identus-cloud-agent",
resolvers += "Local Maven Repository" at "file://" + Path.userHome.absolutePath + "/.m2/repository",
resolvers += "jitpack" at "https://jitpack.io",
)
Expand Down Expand Up @@ -848,7 +848,7 @@ lazy val prismAgentServer = project
.in(file("prism-agent/service/server"))
.settings(commonSetttings)
.settings(
name := "prism-agent",
name := "identus-cloud-agent",
fork := true,
libraryDependencies ++= D_PrismAgent.serverDependencies,
excludeDependencies ++= Seq(
Expand All @@ -858,7 +858,7 @@ lazy val prismAgentServer = project
),
Compile / mainClass := Some("io.iohk.atala.agent.server.MainApp"),
Docker / maintainer := "[email protected]",
Docker / dockerUsername := Some("input-output-hk"),
Docker / dockerUsername := Some("hyperledger"),
Docker / dockerRepository := Some("ghcr.io"),
dockerExposedPorts := Seq(8080, 8085, 8090),
// Official docker image for openjdk 21 with curl and bash
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/charts/agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ server:
image:
repository: ghcr.io
pullPolicy: IfNotPresent
tag: input-output-hk/prism-agent
tag: hyperledger/identus-cloud-agent
resources:
limits:
cpu: 500m
Expand Down
154 changes: 0 additions & 154 deletions infrastructure/ci/docker-compose-multiple-actors.yml

This file was deleted.

2 changes: 1 addition & 1 deletion infrastructure/shared/docker-compose-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
condition: service_healthy

prism-agent:
image: ghcr.io/input-output-hk/prism-agent:${PRISM_AGENT_VERSION}
image: ghcr.io/hyperledger/identus-cloud-agent:${PRISM_AGENT_VERSION}
environment:
DIDCOMM_SERVICE_URL: http://${DOCKERHOST}:${PORT}/didcomm
REST_SERVICE_URL: http://${DOCKERHOST}:${PORT}/prism-agent
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/shared/docker-compose-mt-keycloak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ services:
retries: 5

prism-agent:
image: ghcr.io/input-output-hk/prism-agent:${PRISM_AGENT_VERSION}
image: ghcr.io/hyperledger/identus-cloud-agent:${PRISM_AGENT_VERSION}
environment:
POLLUX_DB_HOST: db
POLLUX_DB_PORT: 5432
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/shared/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ services:
retries: 5

prism-agent:
image: ghcr.io/input-output-hk/prism-agent:${PRISM_AGENT_VERSION}
image: ghcr.io/hyperledger/identus-cloud-agent:${PRISM_AGENT_VERSION}
environment:
POLLUX_DB_HOST: db
POLLUX_DB_PORT: 5432
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ services:
condition: service_healthy

issuer-oea:
image: ghcr.io/input-output-hk/prism-agent:${PRISM_AGENT_VERSION}
image: ghcr.io/hyperledger/identus-cloud-agent:${PRISM_AGENT_VERSION}
environment:
POLLUX_DB_HOST: issuer-db
POLLUX_DB_PORT: 5432
Expand Down Expand Up @@ -155,7 +155,7 @@ services:
- 9095:9095

verifier-oea:
image: ghcr.io/input-output-hk/prism-agent:${PRISM_AGENT_VERSION}
image: ghcr.io/hyperledger/identus-cloud-agent:${PRISM_AGENT_VERSION}
environment:
POLLUX_DB_HOST: verifier-db
POLLUX_DB_PORT: 5432
Expand Down Expand Up @@ -227,7 +227,7 @@ services:
- DATA_SOURCE_NAME=postgresql://postgres:postgres@issuer-db:5432/postgres?sslmode=disable

holder-oea:
image: ghcr.io/input-output-hk/prism-agent:${PRISM_AGENT_VERSION}
image: ghcr.io/hyperledger/identus-cloud-agent:${PRISM_AGENT_VERSION}
environment:
POLLUX_DB_HOST: holder-db
POLLUX_DB_PORT: 5432
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
[
"@semantic-release/exec",
{
"prepareCmd": "helm repo index --url \"https://raw.githubusercontent.com/hyperledger-labs/open-enterprise-agent/main/infrastructure/charts\" --merge index.yaml infrastructure/charts"
"prepareCmd": "helm repo index --url \"https://raw.githubusercontent.com/hyperledger/identus-cloud-agent/main/infrastructure/charts\" --merge index.yaml infrastructure/charts"
}
],
[
Expand All @@ -89,7 +89,7 @@
[
"@semantic-release/exec",
{
"prepareCmd": "docker buildx build --platform=linux/arm64,linux/amd64 --push -t ghcr.io/input-output-hk/prism-agent:${nextRelease.version} ./prism-agent/service/server/target/docker/stage"
"prepareCmd": "docker buildx build --platform=linux/arm64,linux/amd64 --push -t ghcr.io/hyperledger/identus-cloud-agent:${nextRelease.version} ./prism-agent/service/server/target/docker/stage"
}
],
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:

# Open Enterprise Agent
open-enterprise-agent:
image: ghcr.io/input-output-hk/prism-agent:${OPEN_ENTERPRISE_AGENT_VERSION}
image: ghcr.io/hyperledger/identus-cloud-agent:${OPEN_ENTERPRISE_AGENT_VERSION}
environment:
PRISM_NODE_HOST: host.docker.internal
PRISM_NODE_PORT:
Expand Down
Loading