Skip to content

Commit 38f0659

Browse files
committed
Fix SCC deployment to use health port
1 parent 1f027d7 commit 38f0659

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/controller/semeru_compiler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ func (r *ReconcileWebSphereLiberty) reconcileSemeruDeployment(wlva *wlv1.WebSphe
336336
if healthPort == port {
337337
portIntOrStr = intstr.FromInt32(port)
338338
} else {
339-
portIntOrStr = intstr.FromString(fmt.Sprintf("%d-tcp", port))
339+
portIntOrStr = intstr.FromString(fmt.Sprintf("%d-tcp", healthPort))
340340
}
341341
// Liveness probe
342342
livenessProbe := corev1.Probe{

0 commit comments

Comments
 (0)