mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 03:41:45 +00:00
Fix panic in ControllerManager when GCE external loadbalancer healthcheck is nil
This commit is contained in:
parent
9aef242a4c
commit
e3e9de6010
@ -514,8 +514,9 @@ func (gce *GCECloud) createTargetPool(svc *v1.Service, name, serviceName, ipAddr
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
var err error
|
var err error
|
||||||
|
hcRequestPath, hcPort := hc.RequestPath, hc.Port
|
||||||
if hc, err = gce.ensureHttpHealthCheck(hc.Name, hc.RequestPath, int32(hc.Port)); err != nil || hc == nil {
|
if hc, err = gce.ensureHttpHealthCheck(hc.Name, hc.RequestPath, int32(hc.Port)); err != nil || hc == nil {
|
||||||
return fmt.Errorf("Failed to ensure health check for %v port %d path %v: %v", name, hc.Port, hc.RequestPath, err)
|
return fmt.Errorf("Failed to ensure health check for %v port %d path %v: %v", name, hcPort, hcRequestPath, err)
|
||||||
}
|
}
|
||||||
hcLinks = append(hcLinks, hc.SelfLink)
|
hcLinks = append(hcLinks, hc.SelfLink)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user