File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : gophish
3
3
description : gophish helm chart for Kubernetes
4
4
type : application
5
- version : 1.2.6
5
+ version : 1.2.7
6
6
appVersion : 0.12.1
7
7
maintainers :
8
8
Original file line number Diff line number Diff line change 52
52
livenessProbe :
53
53
httpGet :
54
54
path : {{ .Values.livenessProbe.path }}
55
- port : http
55
+ port : {{ .Values.livenessProbe.port }}
56
56
initialDelaySeconds : {{ .Values.livenessProbe.initialDelaySeconds }}
57
57
periodSeconds : {{ .Values.livenessProbe.periodSeconds }}
58
58
timeoutSeconds : {{ .Values.livenessProbe.timeoutSeconds }}
63
63
readinessProbe :
64
64
httpGet :
65
65
path : {{ .Values.readinessProbe.path }}
66
- port : http
66
+ port : {{ .Values.readinessProbe.port }}
67
67
initialDelaySeconds : {{ .Values.readinessProbe.initialDelaySeconds }}
68
68
periodSeconds : {{ .Values.readinessProbe.periodSeconds }}
69
69
timeoutSeconds : {{ .Values.readinessProbe.timeoutSeconds }}
Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ affinity: {}
91
91
livenessProbe :
92
92
enabled : true
93
93
path : /
94
+ port : admin
94
95
initialDelaySeconds : 30
95
96
periodSeconds : 10
96
97
timeoutSeconds : 5
@@ -100,6 +101,7 @@ livenessProbe:
100
101
readinessProbe :
101
102
enabled : true
102
103
path : /
104
+ port : admin
103
105
initialDelaySeconds : 30
104
106
periodSeconds : 5
105
107
timeoutSeconds : 1
You can’t perform that action at this time.
0 commit comments