File tree 4 files changed +19
-3
lines changed
4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : statping
3
3
description : Status page for monitoring your websites and applications
4
4
type : application
5
- version : 0.1.5
5
+ version : 0.1.6
6
6
appVersion : v0.90.65
7
7
keywords :
8
8
- statping
Original file line number Diff line number Diff line change 1
- {{- if eq .Values.postgres.type "kubedb" }}
1
+ {{- if and .Values.postgres.enabled ( eq .Values.postgres.type "kubedb") }}
2
2
apiVersion : kubedb.com/v1alpha1
3
3
kind : Postgres
4
4
metadata :
Original file line number Diff line number Diff line change
1
+ {{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) -}}
2
+ kind : PersistentVolumeClaim
3
+ apiVersion : v1
4
+ metadata :
5
+ name : {{ include "statping.fullname" . }}
6
+ spec :
7
+ accessModes :
8
+ - {{ .Values.persistence.accessMode | quote }}
9
+ resources :
10
+ requests :
11
+ storage : {{ .Values.persistence.size | quote }}
12
+ {{- if .Values.persistence.storageClass }}
13
+ storageClassName : {{ .Values.persistence.storageClass | quote }}
14
+ {{- end }}
15
+ {{- end -}}
Original file line number Diff line number Diff line change @@ -89,9 +89,10 @@ persistence:
89
89
skipuninstall : false
90
90
91
91
postgres :
92
+ enabled : true
92
93
type : kubedb
93
94
kubedb :
94
- version : " 11.1"
95
+ version : 11.1
95
96
storageType : Durable
96
97
storage :
97
98
accessModes :
You can’t perform that action at this time.
0 commit comments