Skip to content

Commit 2a68f08

Browse files
authored
Merge pull request #3244 from fengxsong/patch-1
[grafana] fix: do not create pvc manually when useStatefulSet
2 parents 357cc3e + 5127f0b commit 2a68f08

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

charts/grafana/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: grafana
3-
version: 8.3.6
3+
version: 8.3.7
44
appVersion: 11.1.0
55
kubeVersion: "^1.8.0-0"
66
description: The leading tool for querying and visualizing time series and metrics.

charts/grafana/templates/pvc.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) (eq .Values.persistence.type "pvc")}}
1+
{{- if and (not .Values.useStatefulSet) .Values.persistence.enabled (not .Values.persistence.existingClaim) (eq .Values.persistence.type "pvc")}}
22
apiVersion: v1
33
kind: PersistentVolumeClaim
44
metadata:

0 commit comments

Comments
 (0)