Remove empty default tls configuration in ctr
Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
parent
a68f9b7c56
commit
7c50784591
@ -149,6 +149,11 @@ func resolverDefaultTLS(clicontext *cli.Context) (*tls.Config, error) {
|
|||||||
config.Certificates = []tls.Certificate{keyPair}
|
config.Certificates = []tls.Certificate{keyPair}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If nothing was set, return nil rather than empty config
|
||||||
|
if !config.InsecureSkipVerify && config.RootCAs == nil && config.Certificates == nil {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
|
||||||
return config, nil
|
return config, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user