Skip to content

Commit

Permalink
[prometheus-json-exporter] Fix ConfigMap name inconsistency
Browse files Browse the repository at this point in the history
Signed-off-by: Giovanni Tirloni <[email protected]>
  • Loading branch information
gtirloni committed Oct 18, 2023
1 parent 30dada6 commit cfcffb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/prometheus-json-exporter/templates/configmap.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-configmap
name: {{ include "prometheus-json-exporter.fullname" . }}
data:
allow-snippet-annotations: "false"
config.yml: |
Expand Down
2 changes: 1 addition & 1 deletion charts/prometheus-json-exporter/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ spec:
volumes:
- name: config-configmap-volume
configMap:
name: {{ .Release.Name }}-configmap
name: {{ include "prometheus-json-exporter.fullname" . }}
items:
- key: config.yml
path: config.yml
Expand Down

0 comments on commit cfcffb9

Please sign in to comment.