Commit e1a67dd3 authored by Geoff Simmons's avatar Geoff Simmons

Bugfix: skip (don't panic) if no Varnish Service is found for an Ingress.

parent 6dd5698f
......@@ -151,6 +151,9 @@ func (worker *NamespaceWorker) syncSvc(key string) error {
if err != nil {
return err
}
if ingSvc == nil {
continue
}
if ingSvc.Namespace != svc.Namespace ||
ingSvc.Name != svc.Name {
continue
......
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