Skip to content

Commit

Permalink
Merge pull request #3244 from fengxsong/patch-1
Browse files Browse the repository at this point in the history
[grafana] fix: do not create pvc manually when useStatefulSet
  • Loading branch information
zanhsieh authored Jul 30, 2024
2 parents 357cc3e + 5127f0b commit 2a68f08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/grafana/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: grafana
version: 8.3.6
version: 8.3.7
appVersion: 11.1.0
kubeVersion: "^1.8.0-0"
description: The leading tool for querying and visualizing time series and metrics.
Expand Down
2 changes: 1 addition & 1 deletion charts/grafana/templates/pvc.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) (eq .Values.persistence.type "pvc")}}
{{- if and (not .Values.useStatefulSet) .Values.persistence.enabled (not .Values.persistence.existingClaim) (eq .Values.persistence.type "pvc")}}
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
Expand Down

0 comments on commit 2a68f08

Please sign in to comment.