Skip to content

Commit

Permalink
Add extraFlags (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
antares-sw authored Jul 31, 2023
1 parent 652e025 commit 5498775
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/web3signer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 4.0.1
version: 4.0.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
3 changes: 3 additions & 0 deletions charts/web3signer/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ spec:
args:
- --config-file=/config/config.yaml
- eth2
{{- range .Values.extraFlags }}
- {{ . | quote }}
{{- end }}
env:
- name: JAVA_OPTS
value: {{ .Values.web3signerJavaOpts | quote }}
Expand Down
3 changes: 3 additions & 0 deletions charts/web3signer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ web3signerJavaOpts: "-Xmx1g -Xms1g"
##
keyManagerApiEnabled: "false"

## Extra flags for web3signer
##
extraFlags: []

## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
##
Expand Down

0 comments on commit 5498775

Please sign in to comment.