2019-12-17 23:18:31 +00:00
|
|
|
/*
|
|
|
|
Copyright 2019 The Kubernetes Authors All rights reserved.
|
2019-12-18 00:38:56 +00:00
|
|
|
|
2019-12-17 23:18:31 +00:00
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
2019-12-18 00:38:56 +00:00
|
|
|
|
2019-12-17 23:18:31 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2019-12-18 00:38:56 +00:00
|
|
|
|
2019-12-17 23:18:31 +00:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package kic
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os/exec"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/docker/machine/libmachine/drivers"
|
2020-01-24 02:43:26 +00:00
|
|
|
"github.com/docker/machine/libmachine/ssh"
|
2019-12-17 23:18:31 +00:00
|
|
|
"github.com/docker/machine/libmachine/state"
|
2020-01-24 02:43:26 +00:00
|
|
|
"github.com/golang/glog"
|
2020-01-24 03:20:44 +00:00
|
|
|
"github.com/pkg/errors"
|
2020-01-24 07:51:41 +00:00
|
|
|
"github.com/spf13/viper"
|
2019-12-17 23:18:31 +00:00
|
|
|
pkgdrivers "k8s.io/minikube/pkg/drivers"
|
|
|
|
"k8s.io/minikube/pkg/drivers/kic/node"
|
2019-12-18 00:04:03 +00:00
|
|
|
"k8s.io/minikube/pkg/drivers/kic/oci"
|
2020-01-24 03:20:44 +00:00
|
|
|
"k8s.io/minikube/pkg/minikube/assets"
|
2019-12-17 23:18:31 +00:00
|
|
|
"k8s.io/minikube/pkg/minikube/command"
|
2020-01-24 07:51:41 +00:00
|
|
|
"k8s.io/minikube/pkg/minikube/config"
|
2019-12-22 05:20:32 +00:00
|
|
|
"k8s.io/minikube/pkg/minikube/constants"
|
2019-12-17 23:18:31 +00:00
|
|
|
)
|
|
|
|
|
2019-12-22 22:36:04 +00:00
|
|
|
// DefaultPodCIDR is The CIDR to be used for pods inside the node.
|
|
|
|
const DefaultPodCIDR = "10.244.0.0/16"
|
|
|
|
|
2020-01-08 23:21:57 +00:00
|
|
|
// DefaultBindIPV4 is The default IP the container will bind to.
|
2019-12-23 01:19:31 +00:00
|
|
|
const DefaultBindIPV4 = "127.0.0.1"
|
|
|
|
|
2020-01-21 23:14:51 +00:00
|
|
|
// BaseImage is the base image is used to spin up kic containers created by kind.
|
2020-01-24 01:45:50 +00:00
|
|
|
// const BaseImage = "gcr.io/k8s-minikube/kicbase:v0.0.1@sha256:c4ad2938877d2ae0d5b7248a5e7182ff58c0603165c3bedfe9d503e2d380a0db"
|
|
|
|
// BaseImage is the base image is used to spin up kic containers created by kind.
|
2020-01-24 02:24:51 +00:00
|
|
|
const BaseImage = "kicbase:local"
|
2020-01-08 21:56:23 +00:00
|
|
|
|
2020-01-21 23:14:51 +00:00
|
|
|
// OverlayImage is the cni plugin used for overlay image, created by kind.
|
|
|
|
const OverlayImage = "kindest/kindnetd:0.5.3"
|
|
|
|
|
2019-12-22 22:36:04 +00:00
|
|
|
// Driver represents a kic driver https://minikube.sigs.k8s.io/docs/reference/drivers/kic/
|
2019-12-17 23:18:31 +00:00
|
|
|
type Driver struct {
|
|
|
|
*drivers.BaseDriver
|
|
|
|
*pkgdrivers.CommonDriver
|
2019-12-18 05:36:37 +00:00
|
|
|
URL string
|
|
|
|
exec command.Runner
|
|
|
|
NodeConfig Config
|
|
|
|
OCIBinary string // docker,podman
|
2019-12-17 23:18:31 +00:00
|
|
|
}
|
|
|
|
|
2019-12-19 17:52:53 +00:00
|
|
|
// Config is configuration for the kic driver used by registry
|
2019-12-17 23:18:31 +00:00
|
|
|
type Config struct {
|
2020-01-24 02:28:32 +00:00
|
|
|
MachineName string // maps to the container name being created
|
|
|
|
CPU int // Number of CPU cores assigned to the container
|
|
|
|
Memory int // max memory in MB
|
|
|
|
StorePath string // libmachine store path
|
|
|
|
OCIBinary string // oci tool to use (docker, podman,...)
|
|
|
|
ImageDigest string // image name with sha to use for the node
|
|
|
|
APIHostBindPort int // bind port for api server
|
|
|
|
SSHHostBindPort int // bind port for ssh server
|
|
|
|
Mounts []oci.Mount // mounts
|
|
|
|
PortMappings []oci.PortMapping // container port mappings
|
|
|
|
Envs map[string]string // key,value of environment variables passed to the node
|
2019-12-17 23:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDriver returns a fully configured Kic driver
|
|
|
|
func NewDriver(c Config) *Driver {
|
|
|
|
d := &Driver{
|
|
|
|
BaseDriver: &drivers.BaseDriver{
|
|
|
|
MachineName: c.MachineName,
|
|
|
|
StorePath: c.StorePath,
|
|
|
|
},
|
2019-12-18 05:36:37 +00:00
|
|
|
exec: command.NewKICRunner(c.MachineName, c.OCIBinary),
|
|
|
|
NodeConfig: c,
|
2019-12-21 22:31:39 +00:00
|
|
|
OCIBinary: c.OCIBinary,
|
2019-12-17 23:18:31 +00:00
|
|
|
}
|
|
|
|
return d
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a host using the driver's config
|
|
|
|
func (d *Driver) Create() error {
|
2019-12-19 19:12:49 +00:00
|
|
|
params := node.CreateConfig{
|
2019-12-18 05:36:37 +00:00
|
|
|
Name: d.NodeConfig.MachineName,
|
|
|
|
Image: d.NodeConfig.ImageDigest,
|
|
|
|
ClusterLabel: node.ClusterLabelKey + "=" + d.MachineName,
|
2019-12-19 18:47:07 +00:00
|
|
|
CPUs: strconv.Itoa(d.NodeConfig.CPU),
|
2019-12-18 05:36:37 +00:00
|
|
|
Memory: strconv.Itoa(d.NodeConfig.Memory) + "mb",
|
|
|
|
Envs: d.NodeConfig.Envs,
|
2020-01-24 02:43:26 +00:00
|
|
|
ExtraArgs: []string{"--expose", fmt.Sprintf("%d", d.NodeConfig.APIHostBindPort)},
|
2019-12-18 05:36:37 +00:00
|
|
|
OCIBinary: d.NodeConfig.OCIBinary,
|
2019-12-17 23:18:31 +00:00
|
|
|
}
|
|
|
|
|
2019-12-18 05:36:37 +00:00
|
|
|
// control plane specific options
|
|
|
|
params.PortMappings = append(params.PortMappings, oci.PortMapping{
|
2020-01-24 01:28:30 +00:00
|
|
|
ListenAddress: DefaultBindIPV4,
|
2020-01-24 02:43:26 +00:00
|
|
|
HostPort: int32(d.NodeConfig.APIHostBindPort),
|
2019-12-22 05:20:32 +00:00
|
|
|
ContainerPort: constants.APIServerPort,
|
2020-01-24 01:45:50 +00:00
|
|
|
},
|
|
|
|
oci.PortMapping{
|
|
|
|
ListenAddress: DefaultBindIPV4,
|
2020-01-24 02:43:26 +00:00
|
|
|
HostPort: int32(d.NodeConfig.APIHostBindPort) + constants.SSHPort, // TODO: @medyagh: use github.com/phayes/freeport instead.
|
2020-01-24 01:45:50 +00:00
|
|
|
ContainerPort: constants.SSHPort,
|
|
|
|
},
|
|
|
|
)
|
2020-01-24 03:20:44 +00:00
|
|
|
_, err := node.CreateNode(params)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "create kic node")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := d.prepareSSH(); err != nil {
|
|
|
|
return errors.Wrap(err, "prepare kic ssh")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// prepareSSH will generate keys and copy to the container so minikube ssh works
|
|
|
|
func (d *Driver) prepareSSH() error {
|
2020-01-24 02:43:26 +00:00
|
|
|
keyPath := d.GetSSHKeyPath()
|
|
|
|
glog.Infof("Creating ssh key for kic: %s...", keyPath)
|
|
|
|
if err := ssh.GenerateSSHKey(keyPath); err != nil {
|
|
|
|
return errors.Wrap(err, "generate ssh key")
|
|
|
|
}
|
2020-01-24 03:20:44 +00:00
|
|
|
|
|
|
|
cmder := command.NewKICRunner(d.NodeConfig.MachineName, d.NodeConfig.OCIBinary)
|
|
|
|
f, err := assets.NewFileAsset(d.GetSSHKeyPath()+".pub", "/home/docker/.ssh/", "authorized_keys", "0644")
|
2019-12-17 23:18:31 +00:00
|
|
|
if err != nil {
|
2020-01-24 03:20:44 +00:00
|
|
|
return errors.Wrap(err, "create pubkey assetfile ")
|
|
|
|
}
|
|
|
|
if err := cmder.Copy(f); err != nil {
|
|
|
|
return errors.Wrap(err, "copying pub key")
|
2019-12-17 23:18:31 +00:00
|
|
|
}
|
2020-01-24 03:20:44 +00:00
|
|
|
if rr, err := cmder.RunCmd(exec.Command("chown", "docker:docker", "/home/docker/.ssh/authorized_keys")); err != nil {
|
|
|
|
return errors.Wrapf(err, "apply authorized_keys file ownership, output %s", rr.Output())
|
|
|
|
}
|
|
|
|
|
2019-12-17 23:18:31 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DriverName returns the name of the driver
|
|
|
|
func (d *Driver) DriverName() string {
|
2019-12-18 05:36:37 +00:00
|
|
|
if d.NodeConfig.OCIBinary == "podman" {
|
2019-12-17 23:18:31 +00:00
|
|
|
return "podman"
|
|
|
|
}
|
|
|
|
return "docker"
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetIP returns an IP or hostname that this host is available at
|
|
|
|
func (d *Driver) GetIP() (string, error) {
|
2019-12-19 19:08:05 +00:00
|
|
|
node, err := node.Find(d.OCIBinary, d.MachineName, d.exec)
|
2019-12-17 23:18:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("ip not found for nil node")
|
|
|
|
}
|
|
|
|
ip, _, err := node.IP()
|
|
|
|
return ip, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetSSHHostname returns hostname for use with ssh
|
|
|
|
func (d *Driver) GetSSHHostname() (string, error) {
|
2020-01-24 02:28:32 +00:00
|
|
|
return DefaultBindIPV4, nil
|
2019-12-17 23:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetSSHPort returns port for use with ssh
|
|
|
|
func (d *Driver) GetSSHPort() (int, error) {
|
2020-01-24 07:51:41 +00:00
|
|
|
cc, err := config.Load(viper.GetString(config.MachineProfile))
|
|
|
|
if err != nil {
|
|
|
|
glog.Infof("error loading config file which may be okay on first run : %v ", err)
|
|
|
|
return 22, nil
|
|
|
|
}
|
|
|
|
return int(cc.SSHBindPort), nil
|
2019-12-17 23:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetURL returns ip of the container running kic control-panel
|
|
|
|
func (d *Driver) GetURL() (string, error) {
|
|
|
|
return d.GetIP()
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetState returns the state that the host is in (running, stopped, etc)
|
|
|
|
func (d *Driver) GetState() (state.State, error) {
|
2019-12-18 05:36:37 +00:00
|
|
|
cmd := exec.Command(d.NodeConfig.OCIBinary, "inspect", "-f", "{{.State.Status}}", d.MachineName)
|
2019-12-17 23:18:31 +00:00
|
|
|
out, err := cmd.CombinedOutput()
|
|
|
|
o := strings.Trim(string(out), "\n")
|
|
|
|
if err != nil {
|
|
|
|
return state.Error, errors.Wrapf(err, "error stop node %s", d.MachineName)
|
|
|
|
}
|
2020-01-08 08:21:23 +00:00
|
|
|
switch o {
|
|
|
|
case "running":
|
2019-12-17 23:18:31 +00:00
|
|
|
return state.Running, nil
|
2020-01-08 08:21:23 +00:00
|
|
|
case "exited":
|
2019-12-17 23:18:31 +00:00
|
|
|
return state.Stopped, nil
|
2020-01-08 08:21:23 +00:00
|
|
|
case "paused":
|
2019-12-17 23:18:31 +00:00
|
|
|
return state.Paused, nil
|
2020-01-08 08:21:23 +00:00
|
|
|
case "restarting":
|
2019-12-17 23:18:31 +00:00
|
|
|
return state.Starting, nil
|
2020-01-08 08:21:23 +00:00
|
|
|
case "dead":
|
2019-12-17 23:18:31 +00:00
|
|
|
return state.Error, nil
|
2020-01-08 08:21:23 +00:00
|
|
|
default:
|
|
|
|
return state.None, fmt.Errorf("unknown state")
|
2019-12-17 23:18:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Kill stops a host forcefully, including any containers that we are managing.
|
|
|
|
func (d *Driver) Kill() error {
|
2019-12-18 05:36:37 +00:00
|
|
|
cmd := exec.Command(d.NodeConfig.OCIBinary, "kill", d.MachineName)
|
2019-12-17 23:18:31 +00:00
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
return errors.Wrapf(err, "killing kic node %s", d.MachineName)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove will delete the Kic Node Container
|
|
|
|
func (d *Driver) Remove() error {
|
|
|
|
if _, err := d.nodeID(d.MachineName); err != nil {
|
|
|
|
return errors.Wrapf(err, "not found node %s", d.MachineName)
|
|
|
|
}
|
2019-12-18 05:36:37 +00:00
|
|
|
cmd := exec.Command(d.NodeConfig.OCIBinary, "rm", "-f", "-v", d.MachineName)
|
2019-12-17 23:18:31 +00:00
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
return errors.Wrapf(err, "error removing node %s", d.MachineName)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Restart a host
|
|
|
|
func (d *Driver) Restart() error {
|
|
|
|
s, err := d.GetState()
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "get kic state")
|
|
|
|
}
|
2019-12-19 18:01:18 +00:00
|
|
|
switch s {
|
|
|
|
case state.Paused:
|
2019-12-17 23:18:31 +00:00
|
|
|
return d.Unpause()
|
2019-12-19 18:01:18 +00:00
|
|
|
case state.Stopped:
|
2019-12-17 23:18:31 +00:00
|
|
|
return d.Start()
|
2019-12-19 18:01:18 +00:00
|
|
|
case state.Running, state.Error:
|
2019-12-17 23:18:31 +00:00
|
|
|
if err = d.Stop(); err != nil {
|
2019-12-19 18:01:18 +00:00
|
|
|
return fmt.Errorf("restarting a kic stop phase %v", err)
|
2019-12-17 23:18:31 +00:00
|
|
|
}
|
|
|
|
if err = d.Start(); err != nil {
|
2019-12-19 18:01:18 +00:00
|
|
|
return fmt.Errorf("restarting a kic start phase %v", err)
|
2019-12-17 23:18:31 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-19 18:01:18 +00:00
|
|
|
return fmt.Errorf("restarted not implemented for kic state %s yet", s)
|
2019-12-17 23:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Unpause a kic container
|
|
|
|
func (d *Driver) Unpause() error {
|
2019-12-30 07:54:48 +00:00
|
|
|
cmd := exec.Command(d.NodeConfig.OCIBinary, "unpause", d.MachineName)
|
2019-12-17 23:18:31 +00:00
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
return errors.Wrapf(err, "unpausing %s", d.MachineName)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start a _stopped_ kic container
|
|
|
|
// not meant to be used for Create().
|
|
|
|
func (d *Driver) Start() error {
|
|
|
|
s, err := d.GetState()
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "get kic state")
|
|
|
|
}
|
|
|
|
if s == state.Stopped {
|
2019-12-18 05:36:37 +00:00
|
|
|
cmd := exec.Command(d.NodeConfig.OCIBinary, "start", d.MachineName)
|
2019-12-17 23:18:31 +00:00
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
return errors.Wrapf(err, "starting a stopped kic node %s", d.MachineName)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2019-12-20 09:17:33 +00:00
|
|
|
// TODO:medyagh maybe make it idempotent
|
2019-12-17 23:18:31 +00:00
|
|
|
return fmt.Errorf("cant start a not-stopped (%s) kic node", s)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop a host gracefully, including any containers that we are managing.
|
|
|
|
func (d *Driver) Stop() error {
|
2019-12-18 05:36:37 +00:00
|
|
|
cmd := exec.Command(d.NodeConfig.OCIBinary, "stop", d.MachineName)
|
2019-12-17 23:18:31 +00:00
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
return errors.Wrapf(err, "stopping %s", d.MachineName)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RunSSHCommandFromDriver implements direct ssh control to the driver
|
|
|
|
func (d *Driver) RunSSHCommandFromDriver() error {
|
|
|
|
return fmt.Errorf("driver does not support RunSSHCommandFromDriver commands")
|
|
|
|
}
|
|
|
|
|
|
|
|
// looks up for a container node by name, will return error if not found.
|
|
|
|
func (d *Driver) nodeID(nameOrID string) (string, error) {
|
2019-12-18 05:36:37 +00:00
|
|
|
cmd := exec.Command(d.NodeConfig.OCIBinary, "inspect", "-f", "{{.Id}}", nameOrID)
|
2019-12-17 23:18:31 +00:00
|
|
|
id, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
id = []byte{}
|
|
|
|
}
|
|
|
|
return string(id), err
|
|
|
|
}
|