Remove unused trust key

Signed-off-by: Derek McGowan <derek@mcgstyle.net>
This commit is contained in:
Derek McGowan 2017-05-05 15:30:08 -07:00
parent 2a5d6c8aac
commit 515d0fd842
2 changed files with 0 additions and 11 deletions

View File

@ -5,7 +5,6 @@ import (
"io" "io"
"net/http" "net/http"
"os" "os"
"path/filepath"
"runtime" "runtime"
cliconfig "github.com/docker/cli/cli/config" cliconfig "github.com/docker/cli/cli/config"
@ -51,7 +50,6 @@ type DockerCli struct {
in *InStream in *InStream
out *OutStream out *OutStream
err io.Writer err io.Writer
keyFile string
client client.APIClient client client.APIClient
defaultVersion string defaultVersion string
server ServerInfo server ServerInfo
@ -187,12 +185,6 @@ func (cli *DockerCli) Initialize(opts *cliflags.ClientOptions) error {
cli.defaultVersion = cli.client.ClientVersion() cli.defaultVersion = cli.client.ClientVersion()
if opts.Common.TrustKey == "" {
cli.keyFile = filepath.Join(cliconfig.Dir(), cliflags.DefaultTrustKeyFile)
} else {
cli.keyFile = opts.Common.TrustKey
}
if ping, err := cli.client.Ping(context.Background()); err == nil { if ping, err := cli.client.Ping(context.Background()); err == nil {
cli.server = ServerInfo{ cli.server = ServerInfo{
HasExperimental: ping.Experimental, HasExperimental: ping.Experimental,

View File

@ -13,8 +13,6 @@ import (
) )
const ( const (
// DefaultTrustKeyFile is the default filename for the trust key
DefaultTrustKeyFile = "key.json"
// DefaultCaFile is the default filename for the CA pem file // DefaultCaFile is the default filename for the CA pem file
DefaultCaFile = "ca.pem" DefaultCaFile = "ca.pem"
// DefaultKeyFile is the default filename for the key pem file // DefaultKeyFile is the default filename for the key pem file
@ -38,7 +36,6 @@ type CommonOptions struct {
TLS bool TLS bool
TLSVerify bool TLSVerify bool
TLSOptions *tlsconfig.Options TLSOptions *tlsconfig.Options
TrustKey string
} }
// NewCommonOptions returns a new CommonOptions // NewCommonOptions returns a new CommonOptions