mirror of https://github.com/docker/cli.git
cli/command/formatter: remove deprecated KubernetesEndpoint
This was deprecated in 467e650d4c
, 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
a0756c3c2c
commit
3405eb1f41
|
@ -84,10 +84,3 @@ func (c *clientContextContext) Error() string {
|
||||||
// TODO(thaJeztah) add "--no-trunc" option to context ls and set default to 30 cols to match "docker service ps"
|
// TODO(thaJeztah) add "--no-trunc" option to context ls and set default to 30 cols to match "docker service ps"
|
||||||
return Ellipsis(c.c.Error, maxErrLength)
|
return Ellipsis(c.c.Error, maxErrLength)
|
||||||
}
|
}
|
||||||
|
|
||||||
// KubernetesEndpoint returns the kubernetes endpoint.
|
|
||||||
//
|
|
||||||
// Deprecated: support for kubernetes endpoints in contexts has been removed, and this formatting option will always be empty.
|
|
||||||
func (c *clientContextContext) KubernetesEndpoint() string {
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue