Skip to content

Commit

Permalink
TT-1132 : add quotes to anvil values (#942)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnieeG committed May 7, 2024
1 parent 6c03a0c commit 90dda3a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/foundry/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: foundry
description: A Helm chart for foundry, mostly used to run Anvil node
type: application
version: 0.1.3
version: 0.1.4
appVersion: 'latest'
8 changes: 4 additions & 4 deletions charts/foundry/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ spec:
- {{ .Values.anvil.blockTime | quote }}
{{- if .Values.anvil.blockGasLimit }}
- "--gas-limit"
- {{ .Values.anvil.blockGasLimit }}
- {{ .Values.anvil.blockGasLimit | quote }}
{{- end }}
{{- if .Values.anvil.codeSizeLimit }}
- "--code-size-limit"
- {{ .Values.anvil.codeSizeLimit }}
- {{ .Values.anvil.codeSizeLimit | quote }}
{{- end }}
{{- if .Values.anvil.baseFee }}
- "--base-fee"
- {{ .Values.anvil.baseFee }}
- {{ .Values.anvil.baseFee | quote }}
{{- end }}
- "--host"
- {{ .Values.anvil.host }}
Expand Down Expand Up @@ -102,7 +102,7 @@ spec:
{{- end }}
{{- if .Values.anvil.accountBalance }}
- "--balance"
- {{ .Values.anvil.accountBalance | quote }}
- {{ .Values.anvil.accountBalance | quote }}
{{- end }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
Expand Down
8 changes: 4 additions & 4 deletions charts/foundry/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ anvil:
# forkComputeUnitsPerSecond: "330"
# forkNoRateLimit: "true"
noOfAccounts: 20
accountBalance: 2000000000000000000
blockGasLimit: 400000000000000
codeSizeLimit: 30000
baseFee: 100000
accountBalance: "2000000000000000000"
blockGasLimit: "400000000000000"
codeSizeLimit: "30000"
baseFee: "100000"

image:
repository: ghcr.io/foundry-rs/foundry
Expand Down

0 comments on commit 90dda3a

Please sign in to comment.