Commit 3e85c0f7 authored by Nick Sardo's avatar Nick Sardo

Log instead of fail on GLBCs tendency to leak resources

parent 5913c5a4
...@@ -366,9 +366,10 @@ func CleanupGCEIngressController(gceController *GCEIngressController) { ...@@ -366,9 +366,10 @@ func CleanupGCEIngressController(gceController *GCEIngressController) {
By(fmt.Sprintf("WARNING: possibly leaked static IP: %v\n", ipErr)) By(fmt.Sprintf("WARNING: possibly leaked static IP: %v\n", ipErr))
} }
// Fail if the controller didn't cleanup // Logging that the GLBC failed to cleanup GCE resources on ingress deletion
// See kubernetes/ingress#431
if pollErr != nil { if pollErr != nil {
Failf("L7 controller failed to delete all cloud resources on time. %v", pollErr) Logf("error: L7 controller failed to delete all cloud resources on time. %v", pollErr)
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment