diff --git a/charts/devnet/Chart.yaml b/charts/devnet/Chart.yaml index c2cbb43c0..490e366a9 100644 --- a/charts/devnet/Chart.yaml +++ b/charts/devnet/Chart.yaml @@ -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 diff --git a/examples/cosmos-simapp-multi/Makefile b/examples/cosmos-simapp-multi/Makefile index 39966a904..dda2ca2db 100644 --- a/examples/cosmos-simapp-multi/Makefile +++ b/examples/cosmos-simapp-multi/Makefile @@ -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 ### diff --git a/examples/cosmos-simapp-multi/configs/devnet-20.yaml b/examples/cosmos-simapp-multi/configs/devnet-20.yaml index 282cf2889..f345240c9 100644 --- a/examples/cosmos-simapp-multi/configs/devnet-20.yaml +++ b/examples/cosmos-simapp-multi/configs/devnet-20.yaml @@ -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 diff --git a/examples/cosmos-simapp-multi/configs/devnet-30.yaml b/examples/cosmos-simapp-multi/configs/devnet-30.yaml index d74b00434..7a8218a9b 100644 --- a/examples/cosmos-simapp-multi/configs/devnet-30.yaml +++ b/examples/cosmos-simapp-multi/configs/devnet-30.yaml @@ -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 @@ -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" diff --git a/examples/cosmos-simapp-multi/configs/local.yaml b/examples/cosmos-simapp-multi/configs/local.yaml index 4ee79141e..68d48484c 100644 --- a/examples/cosmos-simapp-multi/configs/local.yaml +++ b/examples/cosmos-simapp-multi/configs/local.yaml @@ -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"