From e630fa44e340f1b45447ff9bca7804f78e330d4a Mon Sep 17 00:00:00 2001 From: Jean-Philippe Raynaud Date: Wed, 26 Jul 2023 12:19:34 +0200 Subject: [PATCH] Upgrade Cardano node to '8.1.2' --- .github/workflows/test-docker.yml | 2 +- docs/root/manual/getting-started/run-signer-node.md | 2 +- mithril-aggregator/Dockerfile | 2 +- mithril-aggregator/Dockerfile.ci | 2 +- mithril-client/src/commands/snapshot/download.rs | 2 +- mithril-infra/variables.tf | 2 +- mithril-signer/Dockerfile | 2 +- mithril-signer/Dockerfile.ci | 2 +- mithril-test-lab/mithril-devnet/devnet-mkfiles.sh | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test-docker.yml b/.github/workflows/test-docker.yml index 9376dec0bf6..5691d726b72 100644 --- a/.github/workflows/test-docker.yml +++ b/.github/workflows/test-docker.yml @@ -13,7 +13,7 @@ on: description: The url of the archive of the Cardano binaries required: true type: string - default: https://github.com/input-output-hk/cardano-node/releases/download/8.1.1/cardano-node-8.1.1-linux.tar.gz + default: https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-linux.tar.gz dry_run: description: Dry run will not push the Docker images to the registry required: true diff --git a/docs/root/manual/getting-started/run-signer-node.md b/docs/root/manual/getting-started/run-signer-node.md index 7883750b421..76245ea1d33 100644 --- a/docs/root/manual/getting-started/run-signer-node.md +++ b/docs/root/manual/getting-started/run-signer-node.md @@ -71,7 +71,7 @@ Note that this guide works on a Linux machine only. * Read rights on the `Database` folder (specified by the `--database-path` setting of the **Cardano node**) * Read and write rights on the `Inter Process Communication` file (typically defined by the `CARDANO_NODE_SOCKET_PATH` environment variable used to launch the **Cardano node**) -* Install a recent version of [`cardano-cli`](https://github.com/input-output-hk/cardano-node/releases/tag/8.1.1) (version 8.1.1+). +* Install a recent version of [`cardano-cli`](https://github.com/input-output-hk/cardano-node/releases/tag/8.1.2) (version 8.1.2+). * Install a correctly configured Rust toolchain (latest stable version). You can follow the instructions provided [here](https://www.rust-lang.org/learn/get-started). diff --git a/mithril-aggregator/Dockerfile b/mithril-aggregator/Dockerfile index 54715a6148c..5101c270676 100644 --- a/mithril-aggregator/Dockerfile +++ b/mithril-aggregator/Dockerfile @@ -32,7 +32,7 @@ RUN /app/target/release/mithril-aggregator --version FROM debian:11-slim # Args -ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/8.1.1/cardano-node-8.1.1-linux.tar.gz +ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-linux.tar.gz # Upgrade RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates wget sqlite3 && rm -rf /var/lib/apt/lists/* diff --git a/mithril-aggregator/Dockerfile.ci b/mithril-aggregator/Dockerfile.ci index 9578f492f2d..e031780acff 100644 --- a/mithril-aggregator/Dockerfile.ci +++ b/mithril-aggregator/Dockerfile.ci @@ -4,7 +4,7 @@ FROM debian:11-slim # Args -ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/8.1.1/cardano-node-8.1.1-linux.tar.gz +ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-linux.tar.gz # Upgrade RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates wget && rm -rf /var/lib/apt/lists/* diff --git a/mithril-client/src/commands/snapshot/download.rs b/mithril-client/src/commands/snapshot/download.rs index 01d1a04fd50..7d4b91c3d56 100644 --- a/mithril-client/src/commands/snapshot/download.rs +++ b/mithril-client/src/commands/snapshot/download.rs @@ -61,7 +61,7 @@ Files in the directory '{}' can be used to run a Cardano node. If you are using Cardano Docker image, you can restore a Cardano Node with: -docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="{}",target=/data/db/ -e NETWORK={} inputoutput/cardano-node:8.1.1 +docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="{}",target=/data/db/ -e NETWORK={} inputoutput/cardano-node:8.1.2 "###, &self.digest, diff --git a/mithril-infra/variables.tf b/mithril-infra/variables.tf index e36d2f1e741..f5905965a62 100644 --- a/mithril-infra/variables.tf +++ b/mithril-infra/variables.tf @@ -135,7 +135,7 @@ locals { variable "cardano_image_id" { type = string description = "The Cardano image tag of service to deploy" - default = "8.1.1" + default = "8.1.2" } variable "cardano_configurations_repository_commit" { diff --git a/mithril-signer/Dockerfile b/mithril-signer/Dockerfile index 2da23f593fe..14f973ce8c1 100644 --- a/mithril-signer/Dockerfile +++ b/mithril-signer/Dockerfile @@ -33,7 +33,7 @@ RUN /app/target/release/mithril-signer --version FROM debian:11-slim # Args -ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/8.1.1/cardano-node-8.1.1-linux.tar.gz +ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-linux.tar.gz # Upgrade RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates wget sqlite3 && rm -rf /var/lib/apt/lists/* diff --git a/mithril-signer/Dockerfile.ci b/mithril-signer/Dockerfile.ci index 8e8647958cc..345adc88063 100644 --- a/mithril-signer/Dockerfile.ci +++ b/mithril-signer/Dockerfile.ci @@ -4,7 +4,7 @@ FROM debian:11-slim # Args -ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/8.1.1/cardano-node-8.1.1-linux.tar.gz +ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-linux.tar.gz # Upgrade RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates wget && rm -rf /var/lib/apt/lists/* diff --git a/mithril-test-lab/mithril-devnet/devnet-mkfiles.sh b/mithril-test-lab/mithril-devnet/devnet-mkfiles.sh index 396f4a4fd23..c3700237f27 100755 --- a/mithril-test-lab/mithril-devnet/devnet-mkfiles.sh +++ b/mithril-test-lab/mithril-devnet/devnet-mkfiles.sh @@ -54,7 +54,7 @@ SECURITY_PARAM=2 NODE_PORT_START=3000 NODE_ADDR_PREFIX="172.16.238" NODE_ADDR_INCREMENT=10 -CARDANO_BINARY_URL="https://github.com/input-output-hk/cardano-node/releases/download/8.1.1/cardano-node-8.1.1-linux.tar.gz" +CARDANO_BINARY_URL="https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-linux.tar.gz" ALONZO_GENESIS_URL="https://book.world.dev.cardano.org/environments/private/alonzo-genesis.json" CONWAY_GENESIS_URL="https://book.world.dev.cardano.org/environments/private/conway-genesis.json"