Skip to content

Commit

Permalink
Faucet updates (#609)
Browse files Browse the repository at this point in the history
* tezos-faucet: Don't cap address balance by default

* tezos-faucet: Bump images
  • Loading branch information
harryttd authored Oct 13, 2023
1 parent 6b9ac52 commit cc77815
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions charts/tezos-faucet/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ data:
AUTHORIZED_HOST: "{{ .Values.authorizedHost }}"
DISABLE_CHALLENGES: "{{ .Values.disableChallenges }}"
ENABLE_CAPTCHA: "{{ .Values.enableCaptcha }}"
{{- if .Values.maxBalance }}
MAX_BALANCE: "{{ .Values.maxBalance }}"
{{- end }}
REDIS_URL: "{{ .Values.redis.url }}"
RPC_URL: "{{ .Values.backendRpcUrl | default .Values.config.network.rpcUrl | required "An rpc url is required." }}"
MIN_TEZ: "{{ .Values.minTez }}"
Expand Down
9 changes: 5 additions & 4 deletions charts/tezos-faucet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Faucet frontend: https://github.com/oxheadalpha/tezos-faucet

images:
tezosFaucet: ghcr.io/oxheadalpha/tezos-faucet:2.1.0
tezosFaucetBackend: ghcr.io/oxheadalpha/tezos-faucet-backend:2.1.0
tezosFaucet: ghcr.io/oxheadalpha/tezos-faucet:2.2.1
tezosFaucetBackend: ghcr.io/oxheadalpha/tezos-faucet-backend:2.2.0

# Frontend app configuration. You can optionally deploy only the faucet backend.
enableUI: true
Expand All @@ -28,8 +28,9 @@ authorizedHost: "*"
backendRpcUrl: http://tezos-node-rpc:8732
# If the backend requires CAPTCHA tokens to be submitted.
enableCaptcha: true
# Faucet won't dispense to an address if its balance will exceed this.
maxBalance: 6000
# Faucet won't dispense to an address if its balance will exceed this. Not
# capped by default.
maxBalance: null
# The minimum Tez allowed per request.
minTez: 1
# The maximum Tez allowed per request.
Expand Down

0 comments on commit cc77815

Please sign in to comment.