Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
added some values to be used in deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
steezeburger committed Jan 31, 2024
1 parent 4dc1fac commit 64a9681
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
8 changes: 4 additions & 4 deletions charts/rollup-faucet/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ spec:
{{- toYaml .Values.securityContext | nindent 12 }}
command: [ "/app/eth-faucet" ]
args:
- -httpport=8089
- -faucet.amount=1
- -proxycount=1
- -firestoreprojectid=raas-dusk-2
- -httpport={{ .Values.containerPort.port }}
- -faucet.amount={{ .Values.faucetConfig.amount }}
- -proxycount={{ .Values.faucetConfig.proxyCount }}
- -firestoreprojectid={{ .Values.faucetConfig.firestoreProjectID }}
{{- if .Values.firestoreEmulatorConnection.enabled }}
env:
- name: FIRESTORE_EMULATOR_HOST
Expand Down
5 changes: 5 additions & 0 deletions charts/rollup-faucet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

faucetConfig:
proxyCount: 1
amount: 1
firestoreProjectID: "raas-dusk-2"

replicaCount: 1

image:
Expand Down

0 comments on commit 64a9681

Please sign in to comment.