Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Faucet updates #609

Merged
merged 2 commits into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading