mirror of https://github.com/docker/cli.git
cli/context/docker: remove deprecated Endpoint.TLSPassword
This field was deprecated in 15535d4594
, which
is part of docker 23.0, so users should have had a chance to migrate.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
aace828bbe
commit
328fac3a63
|
@ -25,12 +25,6 @@ type EndpointMeta = context.EndpointMetaBase
|
||||||
type Endpoint struct {
|
type Endpoint struct {
|
||||||
EndpointMeta
|
EndpointMeta
|
||||||
TLSData *context.TLSData
|
TLSData *context.TLSData
|
||||||
|
|
||||||
// Deprecated: Use of encrypted TLS private keys has been deprecated, and
|
|
||||||
// will be removed in a future release. Golang has deprecated support for
|
|
||||||
// legacy PEM encryption (as specified in RFC 1423), as it is insecure by
|
|
||||||
// design (see https://go-review.googlesource.com/c/go/+/264159).
|
|
||||||
TLSPassword string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// WithTLSData loads TLS materials for the endpoint
|
// WithTLSData loads TLS materials for the endpoint
|
||||||
|
|
Loading…
Reference in New Issue