mirror of https://github.com/k3s-io/k3s
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
2.5 KiB
110 lines
2.5 KiB
6 years ago
|
package containerd
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"os/exec"
|
||
|
"strings"
|
||
|
"syscall"
|
||
|
"time"
|
||
|
|
||
6 years ago
|
util2 "github.com/rancher/k3s/pkg/agent/util"
|
||
|
"github.com/rancher/k3s/pkg/daemons/config"
|
||
6 years ago
|
"github.com/sirupsen/logrus"
|
||
|
"google.golang.org/grpc"
|
||
|
runtimeapi "k8s.io/kubernetes/pkg/kubelet/apis/cri/runtime/v1alpha2"
|
||
|
"k8s.io/kubernetes/pkg/kubelet/util"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
maxMsgSize = 1024 * 1024 * 16
|
||
6 years ago
|
configToml = `
|
||
|
[plugins.opt]
|
||
|
path = "%OPT%"
|
||
|
[plugins.cri]
|
||
6 years ago
|
stream_server_address = "%NODE%"
|
||
|
stream_server_port = "10010"
|
||
6 years ago
|
`
|
||
|
configCNIToml = `
|
||
6 years ago
|
[plugins.cri.cni]
|
||
6 years ago
|
bin_dir = "%CNIBIN%"
|
||
|
conf_dir = "%CNICFG%"
|
||
6 years ago
|
`
|
||
|
)
|
||
|
|
||
6 years ago
|
func Run(ctx context.Context, cfg *config.Node) error {
|
||
6 years ago
|
args := []string{
|
||
|
"containerd",
|
||
6 years ago
|
"-c", cfg.Containerd.Config,
|
||
|
"-a", cfg.Containerd.Address,
|
||
|
"--state", cfg.Containerd.State,
|
||
|
"--root", cfg.Containerd.Root,
|
||
|
}
|
||
|
|
||
|
template := configToml
|
||
|
if !cfg.NoFlannel {
|
||
|
template += configCNIToml
|
||
6 years ago
|
}
|
||
|
|
||
6 years ago
|
template = strings.Replace(template, "%OPT%", cfg.Containerd.Opt, -1)
|
||
|
template = strings.Replace(template, "%CNIBIN%", cfg.AgentConfig.CNIBinDir, -1)
|
||
|
template = strings.Replace(template, "%CNICFG%", cfg.AgentConfig.CNIConfDir, -1)
|
||
|
template = strings.Replace(template, "%NODE%", cfg.AgentConfig.NodeName, -1)
|
||
|
|
||
|
if err := util2.WriteFile(cfg.Containerd.Config, template); err != nil {
|
||
6 years ago
|
return err
|
||
|
}
|
||
|
|
||
|
if logrus.GetLevel() >= logrus.DebugLevel {
|
||
6 years ago
|
args = append(args, "-l", "debug")
|
||
6 years ago
|
}
|
||
|
|
||
|
go func() {
|
||
6 years ago
|
logrus.Infof("Running containerd %s", config.ArgString(args[1:]))
|
||
6 years ago
|
cmd := exec.Command(args[0], args[1:]...)
|
||
|
cmd.Stdout = os.Stdout
|
||
|
cmd.Stderr = os.Stderr
|
||
|
cmd.SysProcAttr = &syscall.SysProcAttr{
|
||
|
Pdeathsig: syscall.SIGKILL,
|
||
|
}
|
||
|
if err := cmd.Run(); err != nil {
|
||
|
fmt.Fprintf(os.Stderr, "containerd: %s\n", err)
|
||
|
}
|
||
|
os.Exit(1)
|
||
|
}()
|
||
|
|
||
|
for {
|
||
6 years ago
|
addr, dailer, err := util.GetAddressAndDialer("unix://" + cfg.Containerd.Address)
|
||
6 years ago
|
if err != nil {
|
||
|
time.Sleep(1 * time.Second)
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
conn, err := grpc.Dial(addr, grpc.WithInsecure(), grpc.WithTimeout(3*time.Second), grpc.WithDialer(dailer), grpc.WithDefaultCallOptions(grpc.MaxCallRecvMsgSize(maxMsgSize)))
|
||
|
if err != nil {
|
||
|
time.Sleep(1 * time.Second)
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
c := runtimeapi.NewRuntimeServiceClient(conn)
|
||
|
|
||
|
_, err = c.Version(ctx, &runtimeapi.VersionRequest{
|
||
|
Version: "0.1.0",
|
||
|
})
|
||
|
if err == nil {
|
||
|
conn.Close()
|
||
|
break
|
||
|
}
|
||
|
conn.Close()
|
||
6 years ago
|
logrus.Infof("Waiting for containerd startup: %v", err)
|
||
|
select {
|
||
|
case <-ctx.Done():
|
||
|
return ctx.Err()
|
||
|
case <-time.After(time.Second):
|
||
|
}
|
||
6 years ago
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|