diff --git a/core/pkg/ingress/controller/launch.go b/core/pkg/ingress/controller/launch.go index 8a0e67ee2..738d1792f 100644 --- a/core/pkg/ingress/controller/launch.go +++ b/core/pkg/ingress/controller/launch.go @@ -133,7 +133,7 @@ func NewIngressController(backend ingress.Controller) *GenericController { os.MkdirAll(ingress.DefaultSSLDirectory, 0655) // Creates a temp directory for Certificates, as 'rename' functions need to be in the same mount point as the Certificates - os.MkdirAll(ingress.TempSSLDirectory,0655) + os.MkdirAll(ingress.TempSSLDirectory, 0655) config := &Configuration{ UpdateStatus: *updateStatus, diff --git a/core/pkg/ingress/types.go b/core/pkg/ingress/types.go index f1b82c506..75ca65f64 100644 --- a/core/pkg/ingress/types.go +++ b/core/pkg/ingress/types.go @@ -36,7 +36,7 @@ var ( // The name of each file is -.pem. The content is the concatenated // certificate and key. DefaultSSLDirectory = "/ingress-controller/ssl" - TempSSLDirectory = "/ingress-controller/ssl/temp" + TempSSLDirectory = "/ingress-controller/ssl/temp" ) // Controller holds the methods to handle an Ingress backend