diff --git a/core/pkg/ingress/controller/backend_ssl.go b/core/pkg/ingress/controller/backend_ssl.go index 2d273077bd..e9ae161e91 100644 --- a/core/pkg/ingress/controller/backend_ssl.go +++ b/core/pkg/ingress/controller/backend_ssl.go @@ -52,6 +52,11 @@ func (ic *GenericController) syncSecret(key string) { } glog.Infof("updating secret %v in the local store", key) ic.sslCertTracker.Update(key, cert) + // we need to force the sync of the secret to disk + ic.syncSecret(key) + // this update must trigger an update + // (like an update event from a change in Ingress) + ic.syncIngress("secret-update") return }