2019-01-01 08:23:01 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
2019-03-26 22:15:16 +00:00
|
|
|
"bufio"
|
2019-01-09 16:54:15 +00:00
|
|
|
"context"
|
2019-01-01 08:23:01 +00:00
|
|
|
"crypto/tls"
|
|
|
|
"encoding/pem"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2019-03-26 22:15:16 +00:00
|
|
|
sysnet "net"
|
2019-01-01 08:23:01 +00:00
|
|
|
"net/url"
|
|
|
|
"os"
|
2019-01-09 16:54:15 +00:00
|
|
|
"os/exec"
|
2019-01-01 08:23:01 +00:00
|
|
|
"path/filepath"
|
2019-03-26 22:15:16 +00:00
|
|
|
"regexp"
|
2019-03-05 18:28:26 +00:00
|
|
|
"strings"
|
2019-01-01 08:23:01 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
2019-01-09 16:54:15 +00:00
|
|
|
"github.com/rancher/k3s/pkg/cli/cmds"
|
|
|
|
"github.com/rancher/k3s/pkg/daemons/config"
|
2019-01-01 08:23:01 +00:00
|
|
|
"github.com/rancher/norman/pkg/clientaccess"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"k8s.io/apimachinery/pkg/util/json"
|
2019-01-09 16:54:15 +00:00
|
|
|
"k8s.io/apimachinery/pkg/util/net"
|
2019-01-01 08:23:01 +00:00
|
|
|
"k8s.io/client-go/util/cert"
|
2019-01-22 21:14:58 +00:00
|
|
|
"k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1beta1"
|
2019-01-01 08:23:01 +00:00
|
|
|
)
|
|
|
|
|
2019-01-09 16:54:15 +00:00
|
|
|
func Get(ctx context.Context, agent cmds.Agent) *config.Node {
|
2019-01-01 08:23:01 +00:00
|
|
|
for {
|
2019-01-09 16:54:15 +00:00
|
|
|
agentConfig, err := get(&agent)
|
2019-01-01 08:23:01 +00:00
|
|
|
if err != nil {
|
|
|
|
logrus.Error(err)
|
2019-01-09 16:54:15 +00:00
|
|
|
select {
|
|
|
|
case <-time.After(5 * time.Second):
|
|
|
|
continue
|
|
|
|
case <-ctx.Done():
|
|
|
|
logrus.Fatalf("Interrupted")
|
|
|
|
}
|
2019-01-01 08:23:01 +00:00
|
|
|
}
|
|
|
|
return agentConfig
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func getNodeCert(info *clientaccess.Info) (*tls.Certificate, error) {
|
2019-01-09 16:54:15 +00:00
|
|
|
nodeCert, err := clientaccess.Get("/v1-k3s/node.crt", info)
|
2019-01-01 08:23:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
nodeKey, err := clientaccess.Get("/v1-k3s/node.key", info)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
cert, err := tls.X509KeyPair(nodeCert, nodeKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &cert, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func writeNodeCA(dataDir string, nodeCert *tls.Certificate) (string, error) {
|
|
|
|
clientCABytes := pem.EncodeToMemory(&pem.Block{
|
|
|
|
Type: "CERTIFICATE",
|
|
|
|
Bytes: nodeCert.Certificate[1],
|
|
|
|
})
|
|
|
|
|
|
|
|
clientCA := filepath.Join(dataDir, "client-ca.pem")
|
|
|
|
if err := ioutil.WriteFile(clientCA, clientCABytes, 0600); err != nil {
|
|
|
|
return "", errors.Wrapf(err, "failed to write client CA")
|
|
|
|
}
|
|
|
|
|
|
|
|
return clientCA, nil
|
|
|
|
}
|
|
|
|
|
2019-01-09 16:54:15 +00:00
|
|
|
func getHostnameAndIP(info cmds.Agent) (string, string, error) {
|
2019-01-01 08:23:01 +00:00
|
|
|
ip := info.NodeIP
|
|
|
|
if ip == "" {
|
2019-01-09 16:54:15 +00:00
|
|
|
hostIP, err := net.ChooseHostInterface()
|
2019-01-01 08:23:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
ip = hostIP.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
name := info.NodeName
|
|
|
|
if name == "" {
|
|
|
|
hostname, err := os.Hostname()
|
|
|
|
if err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
2019-01-09 16:54:15 +00:00
|
|
|
name = hostname
|
2019-01-01 08:23:01 +00:00
|
|
|
}
|
|
|
|
|
2019-03-05 18:28:26 +00:00
|
|
|
// Use lower case hostname to comply with kubernetes constraint:
|
|
|
|
// https://github.com/kubernetes/kubernetes/issues/71140
|
|
|
|
name = strings.ToLower(name)
|
|
|
|
|
2019-01-01 08:23:01 +00:00
|
|
|
return name, ip, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func localAddress(controlConfig *config.Control) string {
|
|
|
|
return fmt.Sprintf("127.0.0.1:%d", controlConfig.AdvertisePort)
|
|
|
|
}
|
|
|
|
|
2019-01-09 16:54:15 +00:00
|
|
|
func writeKubeConfig(envInfo *cmds.Agent, info clientaccess.Info, controlConfig *config.Control, nodeCert *tls.Certificate) (string, error) {
|
2019-01-01 08:23:01 +00:00
|
|
|
os.MkdirAll(envInfo.DataDir, 0700)
|
|
|
|
kubeConfigPath := filepath.Join(envInfo.DataDir, "kubeconfig.yaml")
|
|
|
|
|
|
|
|
info.URL = "https://" + localAddress(controlConfig)
|
|
|
|
info.CACerts = pem.EncodeToMemory(&pem.Block{
|
|
|
|
Type: cert.CertificateBlockType,
|
|
|
|
Bytes: nodeCert.Certificate[1],
|
|
|
|
})
|
|
|
|
|
|
|
|
return kubeConfigPath, info.WriteKubeConfig(kubeConfigPath)
|
|
|
|
}
|
|
|
|
|
2019-03-26 22:15:16 +00:00
|
|
|
func isValidResolvConf(resolvConfFile string) bool {
|
|
|
|
file, err := os.Open(resolvConfFile)
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
nameserver := regexp.MustCompile(`^nameserver\s+([^\s]*)`)
|
|
|
|
scanner := bufio.NewScanner(file)
|
|
|
|
for scanner.Scan() {
|
|
|
|
ipMatch := nameserver.FindStringSubmatch(scanner.Text())
|
|
|
|
if len(ipMatch) == 2 {
|
|
|
|
ip := sysnet.ParseIP(ipMatch[1])
|
|
|
|
if ip == nil || !ip.IsGlobalUnicast() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := scanner.Err(); err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func locateOrGenerateResolvConf(envInfo *cmds.Agent) string {
|
|
|
|
if envInfo.ResolvConf != "" {
|
|
|
|
return envInfo.ResolvConf
|
|
|
|
}
|
|
|
|
resolvConfs := []string{"/etc/resolv.conf", "/run/systemd/resolve/resolv.conf"}
|
|
|
|
for _, conf := range resolvConfs {
|
|
|
|
if isValidResolvConf(conf) {
|
|
|
|
return conf
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tmpConf := filepath.Join(os.TempDir(), "k3s-resolv.conf")
|
|
|
|
if err := ioutil.WriteFile(tmpConf, []byte("nameserver 8.8.8.8\n"), 0444); err != nil {
|
|
|
|
logrus.Error(err)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return tmpConf
|
|
|
|
}
|
|
|
|
|
2019-01-09 16:54:15 +00:00
|
|
|
func get(envInfo *cmds.Agent) (*config.Node, error) {
|
|
|
|
if envInfo.Debug {
|
|
|
|
logrus.SetLevel(logrus.DebugLevel)
|
2019-01-01 08:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
serverURLParsed, err := url.Parse(envInfo.ServerURL)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info, err := clientaccess.ParseAndValidateToken(envInfo.ServerURL, envInfo.Token)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
controlConfig, err := getConfig(info)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
nodeCert, err := getNodeCert(info)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
clientCA, err := writeNodeCA(envInfo.DataDir, nodeCert)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
nodeName, nodeIP, err := getHostnameAndIP(*envInfo)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
kubeConfig, err := writeKubeConfig(envInfo, *info, controlConfig, nodeCert)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-01-09 16:54:15 +00:00
|
|
|
hostLocal, err := exec.LookPath("host-local")
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "failed to find host-local")
|
|
|
|
}
|
|
|
|
|
2019-03-19 23:28:43 +00:00
|
|
|
var flannelIface *sysnet.Interface
|
|
|
|
if !envInfo.NoFlannel && len(envInfo.FlannelIface) > 0 {
|
|
|
|
flannelIface, err = sysnet.InterfaceByName(envInfo.FlannelIface)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "unable to find interface")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-09 16:54:15 +00:00
|
|
|
nodeConfig := &config.Node{
|
2019-03-04 06:29:06 +00:00
|
|
|
Docker: envInfo.Docker,
|
|
|
|
NoFlannel: envInfo.NoFlannel,
|
|
|
|
ContainerRuntimeEndpoint: envInfo.ContainerRuntimeEndpoint,
|
2019-01-09 16:54:15 +00:00
|
|
|
}
|
2019-03-19 23:28:43 +00:00
|
|
|
nodeConfig.FlannelIface = flannelIface
|
2019-01-01 08:23:01 +00:00
|
|
|
nodeConfig.LocalAddress = localAddress(controlConfig)
|
2019-03-04 22:23:17 +00:00
|
|
|
nodeConfig.Images = filepath.Join(envInfo.DataDir, "images")
|
2019-01-09 16:54:15 +00:00
|
|
|
nodeConfig.AgentConfig.NodeIP = nodeIP
|
|
|
|
nodeConfig.AgentConfig.NodeName = nodeName
|
|
|
|
nodeConfig.AgentConfig.ClusterDNS = controlConfig.ClusterDNS
|
2019-04-12 06:06:35 +00:00
|
|
|
nodeConfig.AgentConfig.ClusterDomain = controlConfig.ClusterDomain
|
2019-03-26 22:15:16 +00:00
|
|
|
nodeConfig.AgentConfig.ResolvConf = locateOrGenerateResolvConf(envInfo)
|
2019-01-01 08:23:01 +00:00
|
|
|
nodeConfig.AgentConfig.CACertPath = clientCA
|
2019-01-09 16:54:15 +00:00
|
|
|
nodeConfig.AgentConfig.ListenAddress = "127.0.0.1"
|
2019-01-01 08:23:01 +00:00
|
|
|
nodeConfig.AgentConfig.KubeConfig = kubeConfig
|
2019-01-09 16:54:15 +00:00
|
|
|
nodeConfig.AgentConfig.RootDir = filepath.Join(envInfo.DataDir, "kubelet")
|
2019-01-01 08:23:01 +00:00
|
|
|
nodeConfig.CACerts = info.CACerts
|
2019-01-09 16:54:15 +00:00
|
|
|
nodeConfig.Containerd.Config = filepath.Join(envInfo.DataDir, "etc/containerd/config.toml")
|
|
|
|
nodeConfig.Containerd.Root = filepath.Join(envInfo.DataDir, "containerd")
|
|
|
|
nodeConfig.Containerd.Opt = filepath.Join(envInfo.DataDir, "containerd")
|
2019-02-08 04:12:49 +00:00
|
|
|
if !envInfo.Debug {
|
|
|
|
nodeConfig.Containerd.Log = filepath.Join(envInfo.DataDir, "containerd/containerd.log")
|
|
|
|
}
|
2019-01-09 16:54:15 +00:00
|
|
|
nodeConfig.Containerd.State = "/run/k3s/containerd"
|
|
|
|
nodeConfig.Containerd.Address = filepath.Join(nodeConfig.Containerd.State, "containerd.sock")
|
2019-01-01 08:23:01 +00:00
|
|
|
nodeConfig.ServerAddress = serverURLParsed.Host
|
|
|
|
nodeConfig.Certificate = nodeCert
|
2019-01-09 16:54:15 +00:00
|
|
|
if !nodeConfig.NoFlannel {
|
|
|
|
nodeConfig.FlannelConf = filepath.Join(envInfo.DataDir, "etc/flannel/net-conf.json")
|
|
|
|
nodeConfig.AgentConfig.CNIBinDir = filepath.Dir(hostLocal)
|
|
|
|
nodeConfig.AgentConfig.CNIConfDir = filepath.Join(envInfo.DataDir, "etc/cni/net.d")
|
|
|
|
}
|
2019-03-04 06:29:06 +00:00
|
|
|
if !nodeConfig.Docker && nodeConfig.ContainerRuntimeEndpoint == "" {
|
2019-01-09 16:54:15 +00:00
|
|
|
nodeConfig.AgentConfig.RuntimeSocket = "unix://" + nodeConfig.Containerd.Address
|
2019-03-04 06:29:06 +00:00
|
|
|
} else {
|
|
|
|
nodeConfig.AgentConfig.RuntimeSocket = "unix://" + nodeConfig.ContainerRuntimeEndpoint
|
2019-01-09 16:54:15 +00:00
|
|
|
}
|
|
|
|
if controlConfig.ClusterIPRange != nil {
|
|
|
|
nodeConfig.AgentConfig.ClusterCIDR = *controlConfig.ClusterIPRange
|
2019-01-01 08:23:01 +00:00
|
|
|
}
|
|
|
|
|
2019-01-09 16:54:15 +00:00
|
|
|
os.Setenv("NODE_NAME", nodeConfig.AgentConfig.NodeName)
|
|
|
|
v1beta1.KubeletSocket = filepath.Join(envInfo.DataDir, "kubelet/device-plugins/kubelet.sock")
|
|
|
|
|
2019-04-05 00:43:00 +00:00
|
|
|
nodeConfig.AgentConfig.ExtraKubeletArgs = envInfo.ExtraKubeletArgs
|
|
|
|
nodeConfig.AgentConfig.ExtraKubeProxyArgs = envInfo.ExtraKubeProxyArgs
|
|
|
|
|
2019-01-01 08:23:01 +00:00
|
|
|
return nodeConfig, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getConfig(info *clientaccess.Info) (*config.Control, error) {
|
|
|
|
data, err := clientaccess.Get("/v1-k3s/config", info)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
controlControl := &config.Control{}
|
|
|
|
return controlControl, json.Unmarshal(data, controlControl)
|
|
|
|
}
|