Skip to content

Commit f55fc6f

Browse files
authored
Merge pull request #922 from input-output-hk/jpraynaud/920-upgrade-cardano-node-8.0.0
Upgrade Cardano node to `8.0.0`
2 parents 35d6bd0 + fb970ce commit f55fc6f

File tree

14 files changed

+58
-25
lines changed

14 files changed

+58
-25
lines changed

.github/workflows/test-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
description: The url of the archive of the Cardano binaries
1414
required: true
1515
type: string
16-
default: https://update-cardano-mainnet.iohk.io/cardano-node-releases/cardano-node-1.35.7-linux.tar.gz
16+
default: https://update-cardano-mainnet.iohk.io/cardano-node-releases/cardano-node-8.0.0-linux.tar.gz
1717
dry_run:
1818
description: Dry run will not push the Docker images to the registry
1919
required: true

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/root/manual/getting-started/run-signer-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ For more information about the **Mithril Protocol**, please refer to the [About
4343
* Read rights on the `Database` folder (`--database-path` setting of the **Cardano Node**)
4444
* Read/Write rights on the `Inter Process Communication` file (usually `CARDANO_NODE_SOCKET_PATH` env var used to launch the **Cardano Node**)
4545

46-
* Install a recent version of the [`cardano-cli`](https://github.com/input-output-hk/cardano-node/releases/tag/1.35.7) (version 1.35.7+)
46+
* Install a recent version of the [`cardano-cli`](https://github.com/input-output-hk/cardano-node/releases/tag/8.0.0) (version 8.0.0+)
4747

4848
* Install a [correctly configured](https://www.rust-lang.org/learn/get-started) Rust toolchain (latest stable version).
4949

docs/versioned_docs/version-maintained/manual/getting-started/run-signer-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ For more information about the **Mithril Protocol**, please refer to the [About
4343
* Read rights on the `Database` folder (`--database-path` setting of the **Cardano Node**)
4444
* Read/Write rights on the `Inter Process Communication` file (usually `CARDANO_NODE_SOCKET_PATH` env var used to launch the **Cardano Node**)
4545

46-
* Install a recent version of the [`cardano-cli`](https://github.com/input-output-hk/cardano-node/releases/tag/1.35.7) (version 1.35.7+)
46+
* Install a recent version of the [`cardano-cli`](https://github.com/input-output-hk/cardano-node/releases/tag/8.0.0) (version 8.0.0+)
4747

4848
* Install a [correctly configured](https://www.rust-lang.org/learn/get-started) Rust toolchain (latest stable version).
4949

mithril-aggregator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ RUN /app/target/release/mithril-aggregator --version
4040
FROM ubuntu:22.04
4141

4242
# Args
43-
ARG CARDANO_BIN_URL=https://update-cardano-mainnet.iohk.io/cardano-node-releases/cardano-node-1.35.7-linux.tar.gz
43+
ARG CARDANO_BIN_URL=https://update-cardano-mainnet.iohk.io/cardano-node-releases/cardano-node-8.0.0-linux.tar.gz
4444

4545
# Upgrade
4646
RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates wget sqlite3 && rm -rf /var/lib/apt/lists/*

mithril-aggregator/Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
FROM ubuntu:22.04
55

66
# Args
7-
ARG CARDANO_BIN_URL=https://update-cardano-mainnet.iohk.io/cardano-node-releases/cardano-node-1.35.7-linux.tar.gz
7+
ARG CARDANO_BIN_URL=https://update-cardano-mainnet.iohk.io/cardano-node-releases/cardano-node-8.0.0-linux.tar.gz
88

99
# Upgrade
1010
RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates wget sqlite3 && rm -rf /var/lib/apt/lists/*

mithril-infra/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ locals {
8787
variable "cardano_image_id" {
8888
type = string
8989
description = "The Cardano image tag of service to deploy"
90-
default = "1.35.7"
90+
default = "8.0.0"
9191
}
9292

9393
variable "mithril_api_domain" {

mithril-signer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ RUN /app/target/release/mithril-signer --version
4141
FROM ubuntu:22.04
4242

4343
# Args
44-
ARG CARDANO_BIN_URL=https://update-cardano-mainnet.iohk.io/cardano-node-releases/cardano-node-1.35.7-linux.tar.gz
44+
ARG CARDANO_BIN_URL=https://update-cardano-mainnet.iohk.io/cardano-node-releases/cardano-node-8.0.0-linux.tar.gz
4545

4646
# Upgrade
4747
RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates wget sqlite3 && rm -rf /var/lib/apt/lists/*

mithril-signer/Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
FROM ubuntu:22.04
55

66
# Args
7-
ARG CARDANO_BIN_URL=https://update-cardano-mainnet.iohk.io/cardano-node-releases/cardano-node-1.35.7-linux.tar.gz
7+
ARG CARDANO_BIN_URL=https://update-cardano-mainnet.iohk.io/cardano-node-releases/cardano-node-8.0.0-linux.tar.gz
88

99
# Upgrade
1010
RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates wget sqlite3 && rm -rf /var/lib/apt/lists/*

mithril-test-lab/mithril-devnet/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,10 @@ NODES=mithril ./devnet-log.sh
5959
./devnet-query.sh
6060

6161
# Query Cardano nodes only on devnet
62-
.NODES=cardano /devnet-query.sh
62+
NODES=cardano ./devnet-query.sh
6363

6464
# Query Mithril nodes only on devnet
65-
.NODES=mithril /devnet-query.sh
66-
65+
NODES=mithril ./devnet-query.sh
6766

6867
# Stop devnet
6968
./devnet-stop.sh

0 commit comments

Comments
 (0)