Skip to content

Commit

Permalink
fix(ethereum-metrics-exporter): Fix additional volume/mount indentati…
Browse files Browse the repository at this point in the history
…on (#342)
  • Loading branch information
samcm authored Oct 10, 2024
1 parent 37b8683 commit accd218
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion charts/ethereum-metrics-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: ethereum-metrics-exporter
description: A Prometheus metrics exporter for Ethereum consensus & execution nodes
home: https://github.com/samcm/ethereum-metrics-exporter
type: application
version: 0.1.5
version: 0.2.0
maintainers:
- name: samcm
email: sam.calder-mason@ethereum.org
2 changes: 1 addition & 1 deletion charts/ethereum-metrics-exporter/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# ethereum-metrics-exporter

![Version: 0.1.5](https://img.shields.io/badge/Version-0.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

A Prometheus metrics exporter for Ethereum consensus & execution nodes

Expand Down
22 changes: 11 additions & 11 deletions charts/ethereum-metrics-exporter/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ spec:
securityContext:
{{- toYaml .Values.containerSecurityContext | nindent 12 }}
volumeMounts:
- name: config
mountPath: "/config.yaml"
subPath: config.yaml
readOnly: true
{{- if .Values.extraVolumeMounts }}
{{ toYaml .Values.extraVolumeMounts | nindent 12}}
{{- end }}
- name: config
mountPath: "/config.yaml"
subPath: config.yaml
readOnly: true
{{- if .Values.extraVolumeMounts }}
{{ toYaml .Values.extraVolumeMounts | nindent 8}}
{{- end }}
ports:
- name: http
containerPort: {{ include "ethereum-metrics-exporter.httpPort" . }}
Expand Down Expand Up @@ -103,8 +103,8 @@ spec:
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
volumes:
{{- if .Values.extraVolumes }}
{{ toYaml .Values.extraVolumes | nindent 8}}
{{ toYaml .Values.extraVolumes | nindent 6}}
{{- end }}
- name: config
configMap:
name: {{ include "ethereum-metrics-exporter.fullname" . }}
- name: config
configMap:
name: {{ include "ethereum-metrics-exporter.fullname" . }}

0 comments on commit accd218

Please sign in to comment.