mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Unquote Prometheus storage paths (#350)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
name: prometheus
|
||||
version: 1.4.1
|
||||
version: 1.4.2
|
||||
description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring system and time series database.
|
||||
home: https://prometheus.io/
|
||||
sources:
|
||||
|
||||
@@ -23,7 +23,7 @@ spec:
|
||||
imagePullPolicy: {{ default "" .Values.imagePullPolicy | quote }}
|
||||
args:
|
||||
- --config.file=/etc/config/alertmanager.yml
|
||||
- --storage.path={{ default "/data" .Values.alertmanager.storagePath | quote }}
|
||||
- --storage.path={{ default "/data" .Values.alertmanager.storagePath }}
|
||||
ports:
|
||||
- containerPort: 9093
|
||||
readinessProbe:
|
||||
|
||||
@@ -38,7 +38,7 @@ spec:
|
||||
args:
|
||||
- --alertmanager.url=http://{{ template "alertmanager.fullname" . }}:{{ .Values.alertmanager.httpPort }}
|
||||
- --config.file=/etc/config/prometheus.yml
|
||||
- --storage.local.path={{ default "/data" .Values.server.storageLocalPath | quote }}
|
||||
- --storage.local.path={{ default "/data" .Values.server.storageLocalPath }}
|
||||
- --web.console.libraries=/etc/prometheus/console_libraries
|
||||
- --web.console.templates=/etc/prometheus/consoles
|
||||
{{- range $key, $value := .Values.server.extraArgs }}
|
||||
|
||||
Reference in New Issue
Block a user