-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial setup for agoric chain * update default setup for agoric setup * run only single node test case * add agoric chain to be run in e2e-test and pr-e2e-test * disable redinessProbe for cometmock enabled chains * add rediness probe to cometmock
- Loading branch information
Showing
9 changed files
with
135 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,7 +136,8 @@ | |
"injective", | ||
"polymer", | ||
"virtual", | ||
"akash" | ||
"akash", | ||
"agoric" | ||
] | ||
}, | ||
"numValidators": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
chains: | ||
- name: agoric-3 | ||
type: agoric | ||
image: ghcr.io/agoric/agoric-3-proposals:main | ||
numValidators: 1 | ||
faucet: | ||
enabled: true | ||
type: starship | ||
ports: | ||
rest: 1313 | ||
rpc: 26653 | ||
exposer: 38083 | ||
resources: | ||
cpu: 1 | ||
memory: 2Gi | ||
- name: cosmoshub-4 | ||
type: cosmos | ||
image: ghcr.io/cosmology-tech/starship/gaia:v10.0.1 | ||
numValidators: 1 | ||
ports: | ||
rest: 1317 | ||
rpc: 26657 | ||
exposer: 38087 | ||
faucet: 8007 | ||
|
||
relayers: | ||
- name: agoric-cosmos | ||
type: hermes | ||
replicas: 1 | ||
chains: | ||
- agoric-3 | ||
- cosmoshub-4 | ||
|
||
registry: | ||
enabled: true | ||
ports: | ||
rest: 8081 | ||
grpc: 9091 |