Skip to content

Commit 1b990d3

Browse files
committed
(gophish) add template probe ports
1 parent ab25aee commit 1b990d3

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

charts/gophish/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: gophish
33
description: gophish helm chart for Kubernetes
44
type: application
5-
version: 1.2.6
5+
version: 1.2.7
66
appVersion: 0.12.1
77
maintainers:
88

charts/gophish/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ spec:
5252
livenessProbe:
5353
httpGet:
5454
path: {{ .Values.livenessProbe.path }}
55-
port: http
55+
port: {{ .Values.livenessProbe.port }}
5656
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
5757
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
5858
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
@@ -63,7 +63,7 @@ spec:
6363
readinessProbe:
6464
httpGet:
6565
path: {{ .Values.readinessProbe.path }}
66-
port: http
66+
port: {{ .Values.readinessProbe.port }}
6767
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
6868
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
6969
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}

charts/gophish/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ affinity: {}
9191
livenessProbe:
9292
enabled: true
9393
path: /
94+
port: admin
9495
initialDelaySeconds: 30
9596
periodSeconds: 10
9697
timeoutSeconds: 5
@@ -100,6 +101,7 @@ livenessProbe:
100101
readinessProbe:
101102
enabled: true
102103
path: /
104+
port: admin
103105
initialDelaySeconds: 30
104106
periodSeconds: 5
105107
timeoutSeconds: 1

0 commit comments

Comments
 (0)