Skip to content

Commit a0273f7

Browse files
committed
chore(geth-exporter): add args
1 parent c18043c commit a0273f7

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

charts/geth-exporter/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type: application
1919
# This is the chart version. This version number should be incremented each time you make changes
2020
# to the chart and its templates, including the app version.
2121
# Versions are expected to follow Semantic Versioning (https://semver.org/)
22-
version: 0.1.0
22+
version: 0.1.1
2323

2424
# This is the version number of the application being deployed. This version number should be
2525
# incremented each time you make changes to the application. Versions are not expected to

charts/geth-exporter/templates/deployment.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ spec:
4545
{{- toYaml .Values.securityContext | nindent 12 }}
4646
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
4747
imagePullPolicy: {{ .Values.image.pullPolicy }}
48+
args:
49+
- --config
50+
- /config.yaml
51+
{{- with .Values.extraArgs }}
52+
{{- toYaml . | nindent 12 }}
53+
{{- end }}
4854
ports:
4955
- name: http
5056
containerPort: 8000

charts/geth-exporter/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ imagePullSecrets: []
1414
nameOverride: ""
1515
fullnameOverride: ""
1616

17+
extraArgs: []
18+
1719
configuration:
1820
config: |
1921
---

0 commit comments

Comments
 (0)