Skip to content

Commit

Permalink
Addition of Regen (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilkumarpilli authored Aug 23, 2021
1 parent a1d03d5 commit f27190d
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ jobs:
repository: https://github.com/CosmosContracts/Juno
namespace: JUNOD
wasmvm_version: v0.14.0
- project: regen
project_bin: regen
project_dir: .regen
version: v1.0.0
repository: https://github.com/regen-network/regen-ledger
namespace: REGEN
wasmvm_version: v0.13.0
steps:
- uses: actions/checkout@v2
- name: build
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ tagged with the form `$COSMOS_OMNIBUS_VERSION-$PROJECT-$PROJECT_VERSION`.
|[osmosis](https://github.com/osmosis-labs/osmosis)|`v3.1.0`|`ghcr.io/ovrclk/cosmos-omnibus:v0.0.5-osmosis-v3.1.0`|[Example](./osmosis)|
|[persistence](https://github.com/persistenceOne/persistenceCore)|`v0.1.3`|`ghcr.io/ovrclk/cosmos-omnibus:v0.0.5-persistence-v0.1.3`|[Example](./persistence)|
|[juno](https://github.com/CosmosContracts/Juno)|`lucina`|`ghcr.io/ovrclk/cosmos-omnibus:v0.0.5-juno-lucina`|[Example](./juno)|
|[regen](https://github.com/regen-network/regen-ledger)|`v1.0.0`|`ghcr.io/ovrclk/cosmos-omnibus:v0.0.5-regen-v1.0.0`|[Example](./regen)|

## Configuration

Expand Down
46 changes: 46 additions & 0 deletions regen/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
version: "2.0"

services:
node:
image: ghcr.io/ovrclk/cosmos-omnibus:v0.0.5-regen-v1.0.0
env:
- MONIKER=node_1
- CHAIN_URL=https://raw.githubusercontent.com/sikkatech/tm-networks/master/regen-1/chain.json
- MINIMUM_GAS_PRICES=0.025uregen
expose:
- port: 26657
as: 80
to:
- global: true
- port: 26656
to:
- global: true

profiles:
compute:
node:
resources:
cpu:
units: 2
memory:
size: 2Gi
storage:
size: 60Gi
placement:
dcloud:
attributes:
host: akash
signedBy:
anyOf:
- akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63
pricing:
node:
denom: uakt
amount: 100

deployment:
node:
dcloud:
profile: node
count: 1
19 changes: 19 additions & 0 deletions regen/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: '3.4'

services:
node_1:
build:
context: ../
args:
PROJECT: regen
PROJECT_BIN: regen
PROJECT_DIR: .regen
VERSION: v1.0.0
REPOSITORY: https://github.com/regen-network/regen-ledger
NAMESPACE: REGEN
environment:
- MONIKER=node_1
- CHAIN_URL=https://raw.githubusercontent.com/sikkatech/tm-networks/master/regen-1/chain.json
- MINIMUM_GAS_PRICES=0.025uregen
volumes:
- ./node-data:/root/.regen

0 comments on commit f27190d

Please sign in to comment.