Skip to content

Commit efa590c

Browse files
authored
Merge pull request #128 from RedHatInsights/update-probe-port
Update probe port
2 parents 4fb5bad + 7fc7754 commit efa590c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

controllers/reconcile.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,15 @@ func populateContainer(d *apps.Deployment, frontend *crd.Frontend, frontendEnvir
153153
},
154154
LivenessProbe: &v1.Probe{
155155
ProbeHandler: v1.ProbeHandler{
156-
HTTPGet: &v1.HTTPGetAction{Path: "/", Port: intstr.FromInt(80)},
156+
HTTPGet: &v1.HTTPGetAction{Path: "/", Port: intstr.FromInt(8000)},
157157
},
158158
InitialDelaySeconds: 10,
159159
PeriodSeconds: 60,
160160
FailureThreshold: 3,
161161
},
162162
ReadinessProbe: &v1.Probe{
163163
ProbeHandler: v1.ProbeHandler{
164-
HTTPGet: &v1.HTTPGetAction{Path: "/", Port: intstr.FromInt(80)},
164+
HTTPGet: &v1.HTTPGetAction{Path: "/", Port: intstr.FromInt(8000)},
165165
},
166166
InitialDelaySeconds: 10,
167167
},

0 commit comments

Comments
 (0)