We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d53abb9 commit aa63a56Copy full SHA for aa63a56
cloud/scope/cluster.go
@@ -314,10 +314,11 @@ func (s *ClusterScope) ForwardingRuleSpec() *compute.ForwardingRule {
314
func (s *ClusterScope) HealthCheckSpec() *compute.HealthCheck {
315
return &compute.HealthCheck{
316
Name: fmt.Sprintf("%s-%s", s.Name(), infrav1.APIServerRoleTagValue),
317
- Type: "SSL",
318
- SslHealthCheck: &compute.SSLHealthCheck{
+ Type: "HTTPS",
+ HttpsHealthCheck: &compute.HTTPSHealthCheck{
319
Port: 6443,
320
PortSpecification: "USE_FIXED_PORT",
321
+ RequestPath: "/readyz",
322
},
323
CheckIntervalSec: 10,
324
TimeoutSec: 5,
0 commit comments