File tree Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Expand file tree Collapse file tree 3 files changed +15
-9
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.72.2
6
+ version : 0.73.0
7
7
appVersion : v1.51.1
8
8
maintainers :
9
9
- name : Flipt
Original file line number Diff line number Diff line change 88
88
{{- toYaml .Values.extraVolumeMounts | nindent 12 }}
89
89
{{- end }}
90
90
livenessProbe :
91
- httpGet :
92
- path : /health
93
- port : http
94
- initialDelaySeconds : 3
91
+ {{- toYaml .Values.livenessProbe | nindent 12 }}
95
92
readinessProbe :
96
- httpGet :
97
- path : /health
98
- port : http
99
- initialDelaySeconds : 3
93
+ {{- toYaml .Values.readinessProbe | nindent 12 }}
100
94
resources :
101
95
{{- toYaml .Values.resources | nindent 12 }}
102
96
volumes :
Original file line number Diff line number Diff line change @@ -44,6 +44,18 @@ securityContext:
44
44
seccompProfile :
45
45
type : " RuntimeDefault"
46
46
47
+ readinessProbe :
48
+ httpGet :
49
+ path : /health
50
+ port : http
51
+ initialDelaySeconds : 3
52
+
53
+ livenessProbe :
54
+ httpGet :
55
+ path : /health
56
+ port : http
57
+ initialDelaySeconds : 3
58
+
47
59
# # Expose the flipt service to be accessed from outside the cluster (LoadBalancer service).
48
60
# # or access it from within the cluster (ClusterIP service). Set the service type and the port to serve it.
49
61
# # ref: http://kubernetes.io/docs/user-guide/services/
You can’t perform that action at this time.
0 commit comments