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

Update Akash to v0.26.1 #633

Merged
merged 2 commits into from
Sep 28, 2023
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 .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- project: agoric
version: agoric-upgrade-7-2
- project: akash
version: v0.24.0
version: v0.26.1
- project: assetmantle
version: v1.0.0
- project: autonomy
Expand Down
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,21 @@ ARG BINARY_URL
RUN curl -Lo /bin/$PROJECT_BIN $BINARY_URL
RUN chmod +x /bin/$PROJECT_BIN

#
# Optional image to install from binary zip
#
FROM build_base AS binary_zip

ARG BINARY_URL
ARG BINARY_ZIP_PATH

RUN curl -Lo /bin/$PROJECT_BIN.zip $BINARY_URL
RUN unzip /bin/$PROJECT_BIN.zip -d /bin && rm /bin/$PROJECT_BIN.zip
RUN if [ -n "$BINARY_ZIP_PATH" ]; then \
mv /bin/${BINARY_ZIP_PATH} /bin; \
fi
RUN chmod +x /bin/$PROJECT_BIN

#
# Custom image for injective
#
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ tagged with the form `$COSMOS_OMNIBUS_VERSION-$PROJECT-$PROJECT_VERSION`.
|Project|Version|Image| |
|---|---|---|---|
|[agoric](https://github.com/Agoric/ag0)|`agoric-upgrade-7-2`|`ghcr.io/akash-network/cosmos-omnibus:v0.3.48-agoric-agoric-upgrade-7-2`|[Example](./agoric)|
|[akash](https://github.com/akash-network/node)|`v0.24.0`|`ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0`|[Example](./akash)|
|[akash](https://github.com/akash-network/node)|`v0.26.1`|`ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1`|[Example](./akash)|
|[assetmantle](https://github.com/AssetMantle/node)|`v1.0.0`|`ghcr.io/akash-network/cosmos-omnibus:v0.3.48-assetmantle-v1.0.0`|[Example](./assetmantle)|
|[autonomy](https://github.com/AutonomyNetwork/autonomy-chain)|`v1.2.1`|`ghcr.io/akash-network/cosmos-omnibus:v0.3.48-autonomy-v1.2.1`|[Example](./autonomy)|
|[bandchain](https://github.com/bandprotocol/chain)|`v2.5.1`|`ghcr.io/akash-network/cosmos-omnibus:v0.3.48-bandchain-v2.5.1`|[Example](./bandchain)|
Expand Down
2 changes: 1 addition & 1 deletion _examples/load-balanced-rpc-nodes/node_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "2.0"

services:
node:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=my-moniker-1
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand Down
2 changes: 1 addition & 1 deletion _examples/snapshot_backup/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "2.0"

services:
node:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=my-moniker-1
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand Down
4 changes: 2 additions & 2 deletions _examples/statesync/snapshot-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "2.0"

services:
node1:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=public-node-1
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand All @@ -26,7 +26,7 @@ services:
# data:
# mount: /root/.akash
node2:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=public-node-2
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand Down
2 changes: 1 addition & 1 deletion _examples/statesync/statesync-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "2.0"

services:
node1:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=private_node_1
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand Down
6 changes: 3 additions & 3 deletions _examples/validator-and-private-sentries/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "2.0"

services:
validator:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=validator
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand Down Expand Up @@ -38,7 +38,7 @@ services:
# data:
# mount: /root/.akash
node1:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=private_node_1
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand Down Expand Up @@ -68,7 +68,7 @@ services:
# data:
# mount: /root/.akash
node2:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=private_node_2
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand Down
4 changes: 2 additions & 2 deletions _examples/validator-and-public-sentries/sentries-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "2.0"

services:
node1:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=private_node_1
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand Down Expand Up @@ -32,7 +32,7 @@ services:
# data:
# mount: /root/.akash
node2:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=private_node_2
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "2.0"

services:
validator:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=validator
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand Down
2 changes: 1 addition & 1 deletion _examples/validator-and-tmkms/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "2.0"

services:
node:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=my-moniker-1
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand Down
4 changes: 2 additions & 2 deletions akash/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

| | |
|---|---|
|Version|`v0.24.0`|
|Version|`v0.26.1`|
|Binary|`akash`|
|Directory|`.akash`|
|ENV namespace|`AKASH`|
|Repository|`https://github.com/akash-network/node`|
|Image|`ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0`|
|Image|`ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1`|

## Examples

Expand Down
7 changes: 3 additions & 4 deletions akash/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ services:
context: ../
args:
PROJECT: akash
VERSION: v0.24.0
VERSION: v0.26.1
REPOSITORY: https://github.com/akash-network/node
GOLANG_VERSION: 1.21-bullseye
DEBIAN_VERSION: bullseye
INSTALL_PACKAGES: jq
BUILD_IMAGE: binary_zip
BINARY_URL: https://github.com/akash-network/node/releases/download/v0.26.1/akash_linux_amd64.zip?checksum=sha256:5a2b406e1df0144ef23a184837c5f6bf5e704271ecb94f94d7f705a4f90f2580
ports:
- '26656:26656'
- '26657:26657'
Expand Down
2 changes: 1 addition & 1 deletion akash/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "2.0"

services:
node:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
env:
- MONIKER=my-moniker-1
- CHAIN_JSON=https://raw.githubusercontent.com/akash-network/net/main/mainnet/meta.json
Expand Down
2 changes: 1 addition & 1 deletion akash/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.4'

services:
node_1:
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.24.0
image: ghcr.io/akash-network/cosmos-omnibus:v0.3.48-akash-v0.26.1
ports:
- '26656:26656'
- '26657:26657'
Expand Down