2017-12-04 06:30:39 -05:00
|
|
|
package kubernetes
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/docker/cli/cli/command"
|
2018-02-22 08:55:42 -05:00
|
|
|
"github.com/docker/cli/kubernetes"
|
|
|
|
flag "github.com/spf13/pflag"
|
|
|
|
kubeclient "k8s.io/client-go/kubernetes"
|
2017-12-04 06:30:39 -05:00
|
|
|
restclient "k8s.io/client-go/rest"
|
|
|
|
)
|
|
|
|
|
|
|
|
// KubeCli holds kubernetes specifics (client, namespace) with the command.Cli
|
|
|
|
type KubeCli struct {
|
|
|
|
command.Cli
|
|
|
|
kubeConfig *restclient.Config
|
|
|
|
kubeNamespace string
|
2018-02-22 08:55:42 -05:00
|
|
|
clientSet *kubeclient.Clientset
|
|
|
|
}
|
|
|
|
|
|
|
|
// Options contains resolved parameters to initialize kubernetes clients
|
|
|
|
type Options struct {
|
|
|
|
Namespace string
|
|
|
|
Config string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewOptions returns an Options initialized with command line flags
|
|
|
|
func NewOptions(flags *flag.FlagSet) Options {
|
|
|
|
var opts Options
|
|
|
|
if namespace, err := flags.GetString("namespace"); err == nil {
|
|
|
|
opts.Namespace = namespace
|
|
|
|
}
|
|
|
|
if kubeConfig, err := flags.GetString("kubeconfig"); err == nil {
|
|
|
|
opts.Config = kubeConfig
|
|
|
|
}
|
|
|
|
return opts
|
2017-12-04 06:30:39 -05:00
|
|
|
}
|
|
|
|
|
2018-04-26 05:13:14 -04:00
|
|
|
// AddNamespaceFlag adds the namespace flag to the given flag set
|
|
|
|
func AddNamespaceFlag(flags *flag.FlagSet) {
|
|
|
|
flags.String("namespace", "", "Kubernetes namespace to use")
|
|
|
|
flags.SetAnnotation("namespace", "kubernetes", nil)
|
|
|
|
flags.SetAnnotation("namespace", "experimentalCLI", nil)
|
|
|
|
}
|
|
|
|
|
2017-12-05 03:35:52 -05:00
|
|
|
// WrapCli wraps command.Cli with kubernetes specifics
|
2018-02-22 08:55:42 -05:00
|
|
|
func WrapCli(dockerCli command.Cli, opts Options) (*KubeCli, error) {
|
2017-12-04 06:30:39 -05:00
|
|
|
cli := &KubeCli{
|
2018-03-30 12:04:38 -04:00
|
|
|
Cli: dockerCli,
|
2017-12-04 06:30:39 -05:00
|
|
|
}
|
2018-05-09 01:57:58 -04:00
|
|
|
clientConfig := kubernetes.NewKubernetesConfig(opts.Config)
|
2018-03-30 12:04:38 -04:00
|
|
|
|
|
|
|
cli.kubeNamespace = opts.Namespace
|
2018-05-09 01:57:58 -04:00
|
|
|
if opts.Namespace == "" {
|
2018-03-30 12:04:38 -04:00
|
|
|
configNamespace, _, err := clientConfig.Namespace()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
cli.kubeNamespace = configNamespace
|
|
|
|
}
|
|
|
|
|
|
|
|
config, err := clientConfig.ClientConfig()
|
2017-12-04 06:30:39 -05:00
|
|
|
if err != nil {
|
2018-02-22 08:55:42 -05:00
|
|
|
return nil, err
|
2017-12-04 06:30:39 -05:00
|
|
|
}
|
|
|
|
cli.kubeConfig = config
|
|
|
|
|
2018-02-22 08:55:42 -05:00
|
|
|
clientSet, err := kubeclient.NewForConfig(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
cli.clientSet = clientSet
|
|
|
|
|
2017-12-04 06:30:39 -05:00
|
|
|
return cli, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *KubeCli) composeClient() (*Factory, error) {
|
2018-04-09 09:07:11 -04:00
|
|
|
return NewFactory(c.kubeNamespace, c.kubeConfig, c.clientSet)
|
2017-12-04 06:30:39 -05:00
|
|
|
}
|