Skip to content

Commit cc77815

Browse files
authored
Faucet updates (#609)
* tezos-faucet: Don't cap address balance by default * tezos-faucet: Bump images
1 parent 6b9ac52 commit cc77815

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

charts/tezos-faucet/templates/configmap.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ data:
2222
AUTHORIZED_HOST: "{{ .Values.authorizedHost }}"
2323
DISABLE_CHALLENGES: "{{ .Values.disableChallenges }}"
2424
ENABLE_CAPTCHA: "{{ .Values.enableCaptcha }}"
25+
{{- if .Values.maxBalance }}
2526
MAX_BALANCE: "{{ .Values.maxBalance }}"
27+
{{- end }}
2628
REDIS_URL: "{{ .Values.redis.url }}"
2729
RPC_URL: "{{ .Values.backendRpcUrl | default .Values.config.network.rpcUrl | required "An rpc url is required." }}"
2830
MIN_TEZ: "{{ .Values.minTez }}"

charts/tezos-faucet/values.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Faucet frontend: https://github.com/oxheadalpha/tezos-faucet
33

44
images:
5-
tezosFaucet: ghcr.io/oxheadalpha/tezos-faucet:2.1.0
6-
tezosFaucetBackend: ghcr.io/oxheadalpha/tezos-faucet-backend:2.1.0
5+
tezosFaucet: ghcr.io/oxheadalpha/tezos-faucet:2.2.1
6+
tezosFaucetBackend: ghcr.io/oxheadalpha/tezos-faucet-backend:2.2.0
77

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

0 commit comments

Comments
 (0)