Skip to content

Commit

Permalink
upgrade chart to version 0.1.35, update cosmos-simapp example
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol1696 committed Jun 18, 2023
1 parent 6350ebb commit 1535ee7
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 11 deletions.
2 changes: 1 addition & 1 deletion charts/devnet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.34
version: 0.1.35

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion examples/cosmos-simapp-multi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FILE = configs/local.yaml

HELM_REPO = starship
HELM_CHART = devnet
HELM_VERSION = v0.1.34
HELM_VERSION = v0.1.35

###############################################################################
### All commands ###
Expand Down
3 changes: 3 additions & 0 deletions examples/cosmos-simapp-multi/configs/devnet-20.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
chains:
- name: simapp
type: simapp
image: ghcr.io/strangelove-ventures/heighliner/simapp:v0.47.3
numValidators: 20
ports:
rest: 1317
rpc: 26657
faucet:
image: ghcr.io/cosmology-tech/starship/cosmjs-faucet:v0.31.0-alpha.2

registry:
enabled: true
Expand Down
23 changes: 14 additions & 9 deletions examples/cosmos-simapp-multi/configs/devnet-30.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
chains:
- name: simapp
type: simapp
image: ghcr.io/strangelove-ventures/heighliner/simapp:v0.47.3
numValidators: 30
ports:
rest: 1317
rpc: 26657
faucet:
# use v0.31.0-alpha.2 cosmjs-faucet for compatibility with simapp v0.47.3
image: ghcr.io/cosmology-tech/starship/cosmjs-faucet:v0.31.0-alpha.2
# provide more resources to faucet since the number of validators is higher
# only a single faucet is spun up with the genesis node, so resources wont multiply
# with the number of validators
resources:
limits:
cpu: "0.4"
memory: "500M"
requests:
cpu: "0.4"
memory: "500M"

registry:
enabled: true
Expand All @@ -24,12 +38,3 @@ exposer:
requests:
cpu: "0.1"
memory: "100M"

faucet:
resources:
limits:
cpu: "0.4"
memory: "500M"
requests:
cpu: "0.4"
memory: "500M"
3 changes: 3 additions & 0 deletions examples/cosmos-simapp-multi/configs/local.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
chains:
- name: simapp
type: simapp
image: ghcr.io/strangelove-ventures/heighliner/simapp:v0.47.3
numValidators: 2
ports:
rest: 1317
rpc: 26657
faucet:
image: ghcr.io/cosmology-tech/starship/cosmjs-faucet:v0.31.0-alpha.2
resources:
limits:
cpu: "1"
Expand Down

0 comments on commit 1535ee7

Please sign in to comment.