Skip to content

Commit

Permalink
feat(provider): add bidmindeposit parameter (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
andy108369 committed Mar 29, 2024
1 parent dac8d30 commit 90f620e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/akash-provider/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: application
# Versions are expected to follow Semantic Versioning (https://semver.org/)

# Major version bit highlights the mainnet release (e.g. mainnet4 = 4.x.x, mainnet5 = 5.x.x, ...)
version: 9.2.0
version: 9.2.1

# 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 charts/akash-provider/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ spec:
- name: AKASH_MINIMUM_BALANCE
value: "{{ .Values.minimumbalance }}"
- name: AKASH_BID_DEPOSIT
value: "500000uakt"
value: "{{ .Values.bidmindeposit }}"

ports:
- name: api
Expand Down
2 changes: 2 additions & 0 deletions charts/akash-provider/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ gas: "auto"
# Note that --gas-adjustment is working only when --gas is "auto"!
gasadjustment: "1.5"

bidmindeposit: "500000uakt" # 0.5 AKT - provider minimum bid deposit (5 AKT for sandbox)

# If you plan to use bid price script, then make sure to set bidpricescript variable to the base64 encoded contents of the script.
# This will automatically switch AKASH_BID_PRICE_STRATEGY from "scale" (default) to "shellScript".
# Sample scripts can be found under charts/akash-provider/scripts/ directory.
Expand Down

0 comments on commit 90f620e

Please sign in to comment.