mirror of https://github.com/docker/cli.git
cli/command: remove WithContextEndpointType() as it's unused
This was added in3126920af1
, and modified in520be05c49
, but is not used anywhere. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
6874c2e80b
commit
5ed92699f3
|
@ -1,13 +1,10 @@
|
||||||
package command
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/docker/cli/cli/context/docker"
|
|
||||||
"github.com/docker/cli/cli/context/store"
|
|
||||||
"github.com/docker/cli/cli/streams"
|
"github.com/docker/cli/cli/streams"
|
||||||
"github.com/moby/term"
|
"github.com/moby/term"
|
||||||
)
|
)
|
||||||
|
@ -82,19 +79,6 @@ func WithContentTrust(enabled bool) DockerCliOption {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// WithContextEndpointType add support for an additional typed endpoint in the context store
|
|
||||||
// Plugins should use this to store additional endpoints configuration in the context store
|
|
||||||
func WithContextEndpointType(endpointName string, endpointType store.TypeGetter) DockerCliOption {
|
|
||||||
return func(cli *DockerCli) error {
|
|
||||||
switch endpointName {
|
|
||||||
case docker.DockerEndpoint:
|
|
||||||
return fmt.Errorf("cannot change %q endpoint type", endpointName)
|
|
||||||
}
|
|
||||||
cli.contextStoreConfig.SetEndpoint(endpointName, endpointType)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// WithDefaultContextStoreConfig configures the cli to use the default context store configuration.
|
// WithDefaultContextStoreConfig configures the cli to use the default context store configuration.
|
||||||
func WithDefaultContextStoreConfig() DockerCliOption {
|
func WithDefaultContextStoreConfig() DockerCliOption {
|
||||||
return func(cli *DockerCli) error {
|
return func(cli *DockerCli) error {
|
||||||
|
|
Loading…
Reference in New Issue