Format correctly the changed files
This commit is contained in:
parent
c4307b8e78
commit
c44be09fc1
2 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -36,7 +36,7 @@ var (
|
|||
// The name of each file is <namespace>-<secret name>.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
|
||||
|
|
Loading…
Reference in a new issue