1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 15:47:14 +01:00

Merge pull request #9423 from jhixson74/master-OCPBUGS-42871

OCPBUGS-42871: pkg/infrastructure/network: update NumberOfProbes to ProbeThreshold
This commit is contained in:
openshift-merge-bot[bot]
2025-11-21 22:04:14 +00:00
committed by GitHub

View File

@@ -137,7 +137,7 @@ func createAPILoadBalancer(ctx context.Context, pip *armnetwork.PublicIPAddress,
Protocol: to.Ptr(armnetwork.ProbeProtocolHTTPS),
Port: to.Ptr[int32](6443),
IntervalInSeconds: to.Ptr[int32](5),
NumberOfProbes: to.Ptr[int32](2),
ProbeThreshold: to.Ptr[int32](2),
RequestPath: to.Ptr("/readyz"),
},
},
@@ -225,7 +225,7 @@ func updateOutboundLoadBalancerToAPILoadBalancer(ctx context.Context, pip *armne
Protocol: to.Ptr(armnetwork.ProbeProtocolHTTPS),
Port: to.Ptr[int32](6443),
IntervalInSeconds: to.Ptr[int32](5),
NumberOfProbes: to.Ptr[int32](2),
ProbeThreshold: to.Ptr[int32](2),
RequestPath: to.Ptr("/readyz"),
},
},
@@ -284,7 +284,7 @@ func updateInternalLoadBalancer(ctx context.Context, in *lbInput) (*armnetwork.L
Protocol: to.Ptr(armnetwork.ProbeProtocolHTTPS),
Port: to.Ptr[int32](22623),
IntervalInSeconds: to.Ptr[int32](5),
NumberOfProbes: to.Ptr[int32](2),
ProbeThreshold: to.Ptr[int32](2),
RequestPath: to.Ptr("/healthz"),
},
}