175 lines
5.7 KiB
Go
175 lines
5.7 KiB
Go
/*
|
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
|
|
|
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
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
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 cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/docker/go-units"
|
|
"github.com/docker/machine/libmachine"
|
|
"github.com/docker/machine/libmachine/host"
|
|
"github.com/golang/glog"
|
|
"github.com/spf13/cobra"
|
|
cfg "k8s.io/kubernetes/pkg/client/unversioned/clientcmd/api"
|
|
"k8s.io/minikube/pkg/minikube/cluster"
|
|
"k8s.io/minikube/pkg/minikube/constants"
|
|
"k8s.io/minikube/pkg/minikube/kubeconfig"
|
|
"k8s.io/minikube/pkg/util"
|
|
)
|
|
|
|
var (
|
|
minikubeISO string
|
|
memory int
|
|
cpus int
|
|
disk = newUnitValue(20 * units.GB)
|
|
vmDriver string
|
|
dockerEnv []string
|
|
insecureRegistry []string
|
|
kubernetesVersion string
|
|
)
|
|
|
|
// startCmd represents the start command
|
|
var startCmd = &cobra.Command{
|
|
Use: "start",
|
|
Short: "Starts a local kubernetes cluster.",
|
|
Long: `Starts a local kubernetes cluster using Virtualbox. This command
|
|
assumes you already have Virtualbox installed.`,
|
|
Run: runStart,
|
|
}
|
|
|
|
func runStart(cmd *cobra.Command, args []string) {
|
|
fmt.Println("Starting local Kubernetes cluster...")
|
|
api := libmachine.NewClient(constants.Minipath, constants.MakeMiniPath("certs"))
|
|
defer api.Close()
|
|
|
|
config := cluster.MachineConfig{
|
|
MinikubeISO: minikubeISO,
|
|
Memory: memory,
|
|
CPUs: cpus,
|
|
DiskSize: int(*disk / units.MB),
|
|
VMDriver: vmDriver,
|
|
DockerEnv: dockerEnv,
|
|
InsecureRegistry: insecureRegistry,
|
|
}
|
|
kubernetesConfig := cluster.KubernetesConfig{
|
|
KubernetesVersion: kubernetesVersion,
|
|
}
|
|
|
|
var host *host.Host
|
|
start := func() (err error) {
|
|
host, err = cluster.StartHost(api, config)
|
|
return err
|
|
}
|
|
err := util.Retry(3, start)
|
|
if err != nil {
|
|
glog.Errorln("Error starting host: ", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
if err := cluster.UpdateCluster(host, host.Driver, kubernetesConfig); err != nil {
|
|
glog.Errorln("Error updating cluster: ", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
if err := cluster.SetupCerts(host.Driver); err != nil {
|
|
glog.Errorln("Error configuring authentication: ", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
if err := cluster.StartCluster(host); err != nil {
|
|
glog.Errorln("Error starting cluster: ", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
kubeHost, err := host.Driver.GetURL()
|
|
if err != nil {
|
|
glog.Errorln("Error connecting to cluster: ", err)
|
|
}
|
|
kubeHost = strings.Replace(kubeHost, "tcp://", "https://", -1)
|
|
kubeHost = strings.Replace(kubeHost, ":2376", ":"+strconv.Itoa(constants.APIServerPort), -1)
|
|
fmt.Printf("Kubernetes is available at %s.\n", kubeHost)
|
|
|
|
// setup kubeconfig
|
|
name := constants.MinikubeContext
|
|
certAuth := constants.MakeMiniPath("ca.crt")
|
|
clientCert := constants.MakeMiniPath("apiserver.crt")
|
|
clientKey := constants.MakeMiniPath("apiserver.key")
|
|
if err := setupKubeconfig(name, kubeHost, certAuth, clientCert, clientKey); err != nil {
|
|
glog.Errorln("Error setting up kubeconfig: ", err)
|
|
os.Exit(1)
|
|
}
|
|
fmt.Println("Kubectl is now configured to use the cluster.")
|
|
}
|
|
|
|
// setupKubeconfig reads config from disk, adds the minikube settings, and writes it back.
|
|
// activeContext is true when minikube is the CurrentContext
|
|
// If no CurrentContext is set, the given name will be used.
|
|
func setupKubeconfig(name, server, certAuth, cliCert, cliKey string) error {
|
|
configFile := constants.KubeconfigPath
|
|
|
|
// read existing config or create new if does not exist
|
|
config, err := kubeconfig.ReadConfigOrNew(configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
clusterName := name
|
|
cluster := cfg.NewCluster()
|
|
cluster.Server = server
|
|
cluster.CertificateAuthority = certAuth
|
|
config.Clusters[clusterName] = cluster
|
|
|
|
// user
|
|
userName := name
|
|
user := cfg.NewAuthInfo()
|
|
user.ClientCertificate = cliCert
|
|
user.ClientKey = cliKey
|
|
config.AuthInfos[userName] = user
|
|
|
|
// context
|
|
contextName := name
|
|
context := cfg.NewContext()
|
|
context.Cluster = clusterName
|
|
context.AuthInfo = userName
|
|
config.Contexts[contextName] = context
|
|
|
|
// Always set current context to minikube.
|
|
config.CurrentContext = contextName
|
|
|
|
// write back to disk
|
|
if err := kubeconfig.WriteConfig(config, configFile); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
startCmd.Flags().StringVarP(&minikubeISO, "iso-url", "", constants.DefaultIsoUrl, "Location of the minikube iso")
|
|
startCmd.Flags().StringVarP(&vmDriver, "vm-driver", "", constants.DefaultVMDriver, fmt.Sprintf("VM driver is one of: %v", constants.SupportedVMDrivers))
|
|
startCmd.Flags().IntVarP(&memory, "memory", "", constants.DefaultMemory, "Amount of RAM allocated to the minikube VM")
|
|
startCmd.Flags().IntVarP(&cpus, "cpus", "", constants.DefaultCPUS, "Number of CPUs allocated to the minikube VM")
|
|
diskFlag := startCmd.Flags().VarPF(disk, "disk-size", "", "Disk size allocated to the minikube VM (format: <number>[<unit>], where unit = b, k, m or g)")
|
|
diskFlag.DefValue = constants.DefaultDiskSize
|
|
startCmd.Flags().StringSliceVar(&dockerEnv, "docker-env", nil, "Environment variables to pass to the Docker daemon. (format: key=value)")
|
|
startCmd.Flags().StringSliceVar(&insecureRegistry, "insecure-registry", nil, "Insecure Docker registries to pass to the Docker daemon")
|
|
startCmd.Flags().StringVarP(&kubernetesVersion, "kubernetes-version", "", constants.DefaultKubernetesVersion, "The kubernetes version that the minikube VM will run")
|
|
RootCmd.AddCommand(startCmd)
|
|
}
|