Unverified Commit 2f3da6af authored by Darren Shepherd's avatar Darren Shepherd Committed by GitHub

Merge pull request #175 from ldez/refactor/load-images

refactor: creates preloadImages function.
parents 3ad5b115 10c8ca8d
...@@ -103,7 +103,7 @@ Kubernetes in a manner similar to `kubectl apply`. ...@@ -103,7 +103,7 @@ Kubernetes in a manner similar to `kubectl apply`.
It is also possible to deploy Helm charts. k3s supports a CRD controller for installing charts. A YAML file specification can look as following (example taken from `/var/lib/rancher/k3s/server/manifests/traefik.yaml`): It is also possible to deploy Helm charts. k3s supports a CRD controller for installing charts. A YAML file specification can look as following (example taken from `/var/lib/rancher/k3s/server/manifests/traefik.yaml`):
``` ```yaml
apiVersion: k3s.cattle.io/v1 apiVersion: k3s.cattle.io/v1
kind: HelmChart kind: HelmChart
metadata: metadata:
......
...@@ -3,8 +3,6 @@ package containerd ...@@ -3,8 +3,6 @@ package containerd
import ( import (
"context" "context"
"fmt" "fmt"
"github.com/containerd/containerd"
"github.com/containerd/containerd/namespaces"
"io" "io"
"io/ioutil" "io/ioutil"
"os" "os"
...@@ -14,6 +12,8 @@ import ( ...@@ -14,6 +12,8 @@ import (
"syscall" "syscall"
"time" "time"
"github.com/containerd/containerd"
"github.com/containerd/containerd/namespaces"
"github.com/natefinch/lumberjack" "github.com/natefinch/lumberjack"
util2 "github.com/rancher/k3s/pkg/agent/util" util2 "github.com/rancher/k3s/pkg/agent/util"
"github.com/rancher/k3s/pkg/daemons/config" "github.com/rancher/k3s/pkg/daemons/config"
...@@ -126,40 +126,52 @@ func Run(ctx context.Context, cfg *config.Node) error { ...@@ -126,40 +126,52 @@ func Run(ctx context.Context, cfg *config.Node) error {
} }
} }
return preloadImages(cfg)
}
func preloadImages(cfg *config.Node) error {
fileInfo, err := os.Stat(cfg.Images) fileInfo, err := os.Stat(cfg.Images)
if err != nil { if err != nil {
logrus.Infof("Cannot find images in %s: %v", cfg.Images, err) logrus.Errorf("Unable to find images in %s: %v", cfg.Images, err)
} else { return nil
}
if !fileInfo.IsDir() {
return nil
}
fileInfos, err := ioutil.ReadDir(cfg.Images)
if err != nil {
logrus.Errorf("Unable to read images in %s: %v", cfg.Images, err)
return nil
}
client, err := containerd.New(cfg.Containerd.Address)
if err != nil {
return err
}
defer client.Close()
ctxContainerD := namespaces.WithNamespace(context.Background(), "k8s.io")
for _, fileInfo := range fileInfos {
if fileInfo.IsDir() { if fileInfo.IsDir() {
fileInfos, err := ioutil.ReadDir(cfg.Images) continue
if err != nil {
logrus.Infof("Cannot read images in %s: %v", cfg.Images, err)
}
client, err := containerd.New(cfg.Containerd.Address)
if err != nil {
return err
}
defer client.Close()
ctxContainerD := namespaces.WithNamespace(context.Background(), "k8s.io")
for _, fileInfo := range fileInfos {
if !fileInfo.IsDir() {
filePath := filepath.Join(cfg.Images, fileInfo.Name())
file, err := os.Open(filePath)
if err != nil {
logrus.Errorf("Unable to read %s: %v", filePath, err)
continue
}
logrus.Debugf("Import %s", filePath)
_, err = client.Import(ctxContainerD, file)
if err != nil {
logrus.Errorf("Unable to import %s: %v", filePath, err)
}
}
}
} }
}
filePath := filepath.Join(cfg.Images, fileInfo.Name())
file, err := os.Open(filePath)
if err != nil {
logrus.Errorf("Unable to read %s: %v", filePath, err)
continue
}
logrus.Debugf("Import %s", filePath)
_, err = client.Import(ctxContainerD, file)
if err != nil {
logrus.Errorf("Unable to import %s: %v", filePath, err)
}
}
return nil return nil
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment