File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: flipt
3
3
home : https://flipt.io
4
4
description : Flipt is an open-source, self-hosted feature flag solution.
5
5
type : application
6
- version : 0.73.0
6
+ version : 0.73.1
7
7
appVersion : v1.51.1
8
8
maintainers :
9
9
- name : Flipt
Original file line number Diff line number Diff line change 51
51
mountPath : /etc/flipt/config/default.yml
52
52
readOnly : true
53
53
subPath : default.yml
54
+ - name : flipt-data
55
+ mountPath : /var/opt/flipt
54
56
resources :
55
57
{{- toYaml .Values.resources | nindent 12 }}
56
58
volumes :
59
61
- name : flipt-config
60
62
configMap :
61
63
name : {{ include "flipt.fullname" . }}
64
+ - name : flipt-data
65
+ {{- if .Values.persistence.enabled }}
66
+ persistentVolumeClaim :
67
+ claimName : {{ default (include "flipt.fullname" .) .Values.persistence.existingClaim }}
68
+ {{- else }}
69
+ emptyDir : { }
70
+ {{- end }}
62
71
{{- with .Values.nodeSelector }}
63
72
nodeSelector :
64
73
{{- toYaml . | nindent 8 }}
You can’t perform that action at this time.
0 commit comments