1
0
mirror of https://github.com/rancher/rke.git synced 2025-06-26 07:23:19 +00:00
rke/cmd/cluster.go

134 lines
3.6 KiB
Go
Raw Normal View History

2017-10-29 09:45:21 +00:00
package cmd
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
yaml "gopkg.in/yaml.v2"
"github.com/Sirupsen/logrus"
"github.com/rancher/rke/hosts"
"github.com/rancher/rke/services"
"github.com/urfave/cli"
)
func ClusterCommand() cli.Command {
clusterUpFlags := []cli.Flag{
cli.StringFlag{
Name: "cluster-file",
Usage: "Specify an alternate cluster YAML file (default: cluster.yml)",
EnvVar: "CLUSTER_FILE",
},
}
return cli.Command{
Name: "cluster",
ShortName: "cluster",
Usage: "Operations on the cluster",
Flags: clusterUpFlags,
Subcommands: []cli.Command{
cli.Command{
Name: "up",
Usage: "Bring the cluster up",
Action: clusterUp,
Flags: clusterUpFlags,
},
},
}
}
func clusterUp(ctx *cli.Context) error {
logrus.Infof("Building up Kubernetes cluster")
clusterFile, err := resolveClusterFile(ctx)
if err != nil {
logrus.Errorf("Failed to bring cluster up: %v", err)
return err
}
logrus.Debugf("Parsing cluster file [%v]", clusterFile)
servicesLookup, k8shosts, err := parseClusterFile(clusterFile)
if err != nil {
logrus.Errorf("Failed to parse the cluster file: %v", err)
return err
}
for i := range k8shosts {
// Set up socket tunneling
k8shosts[i].TunnelUp(ctx)
defer k8shosts[i].DClient.Close()
if err != nil {
return err
}
}
etcdHosts, cpHosts, workerHosts := hosts.DivideHosts(k8shosts)
err = services.RunEtcdPlane(etcdHosts, servicesLookup.Services.Etcd)
if err != nil {
logrus.Errorf("[Etcd] Failed to bring up Etcd Plane: %v", err)
return err
}
err = services.RunControlPlane(cpHosts, etcdHosts, servicesLookup.Services)
if err != nil {
logrus.Errorf("[ControlPlane] Failed to bring up Control Plane: %v", err)
return err
}
err = services.RunWorkerPlane(cpHosts, workerHosts, servicesLookup.Services)
if err != nil {
logrus.Errorf("[WorkerPlane] Failed to bring up Worker Plane: %v", err)
return err
}
return nil
}
func resolveClusterFile(ctx *cli.Context) (string, error) {
clusterFile := ctx.String("cluster-file")
if len(clusterFile) == 0 {
clusterFile = "cluster.yml"
}
fp, err := filepath.Abs(clusterFile)
if err != nil {
return "", fmt.Errorf("failed to lookup current directory name: %v", err)
}
file, err := os.Open(fp)
if err != nil {
return "", fmt.Errorf("Can not find cluster.yml: %v", err)
}
defer file.Close()
buf, err := ioutil.ReadAll(file)
if err != nil {
return "", fmt.Errorf("failed to read file: %v", err)
}
clusterFile = string(buf)
return clusterFile, nil
}
func parseClusterFile(clusterFile string) (services.Container, []hosts.Host, error) {
logrus.Debugf("cluster file: \n%s", clusterFile)
// parse hosts
k8shosts := hosts.Hosts{}
err := yaml.Unmarshal([]byte(clusterFile), &k8shosts)
if err != nil {
return services.Container{}, nil, err
}
for i, host := range k8shosts.Hosts {
if len(host.Hostname) == 0 {
return services.Container{}, nil, fmt.Errorf("Hostname for host (%d) is not provided", i+1)
} else if len(host.User) == 0 {
return services.Container{}, nil, fmt.Errorf("User for host (%d) is not provided", i+1)
} else if len(host.Role) == 0 {
return services.Container{}, nil, fmt.Errorf("Role for host (%d) is not provided", i+1)
}
for _, role := range host.Role {
if role != services.ETCDRole && role != services.MasterRole && role != services.WorkerRole {
return services.Container{}, nil, fmt.Errorf("Role [%s] for host (%d) is not recognized", role, i+1)
}
}
}
// parse services
k8sPlanes := services.Container{}
err = yaml.Unmarshal([]byte(clusterFile), &k8sPlanes)
if err != nil {
return services.Container{}, nil, err
}
return k8sPlanes, k8shosts.Hosts, nil
}