Add containerd client.

This commit is contained in:
Shishir Mahajan 2020-05-08 15:08:39 -07:00
parent f24961c2c5
commit f6184c3a9a
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
2 changed files with 23 additions and 1 deletions

5
containerd/containerd.go Normal file
View File

@ -0,0 +1,5 @@
package containerd
func isContainerdActive() bool {
return true
}

View File

@ -10,6 +10,7 @@ import (
"time" "time"
"github.com/containerd/containerd" "github.com/containerd/containerd"
"github.com/containerd/containerd/namespaces"
"github.com/hashicorp/consul-template/signals" "github.com/hashicorp/consul-template/signals"
"github.com/hashicorp/go-hclog" "github.com/hashicorp/go-hclog"
log "github.com/hashicorp/go-hclog" log "github.com/hashicorp/go-hclog"
@ -138,6 +139,12 @@ type Driver struct {
// logger will log to the Nomad agent // logger will log to the Nomad agent
logger log.Logger logger log.Logger
// context for containerd
ctxContainerd context.Context
// containerd client
client *containerd.Client
} }
// NewPlugin returns a new containerd driver plugin // NewPlugin returns a new containerd driver plugin
@ -145,18 +152,28 @@ func NewPlugin(logger log.Logger) drivers.DriverPlugin {
ctx, cancel := context.WithCancel(context.Background()) ctx, cancel := context.WithCancel(context.Background())
logger = logger.Named(pluginName) logger = logger.Named(pluginName)
// This will create a new containerd client which will talk to
// default containerd socket path.
client, err := containerd.New("/run/containerd/containerd.sock") client, err := containerd.New("/run/containerd/containerd.sock")
if err != nil { if err != nil {
logger.Warn(err.Error()) logger.Error("Error in creating containerd client", "err", err)
return nil
} }
defer client.Close() defer client.Close()
// Calls to containerd API are namespaced.
// "nomad" is the namespace that will be used for all nomad-driver-containerd
// related containerd API calls.
ctxContainerd := namespaces.WithNamespace(context.Background(), "nomad")
return &Driver{ return &Driver{
eventer: eventer.NewEventer(ctx, logger), eventer: eventer.NewEventer(ctx, logger),
config: &Config{}, config: &Config{},
tasks: newTaskStore(), tasks: newTaskStore(),
ctx: ctx, ctx: ctx,
ctxContainerd: ctxContainerd,
client: client,
signalShutdown: cancel, signalShutdown: cancel,
logger: logger, logger: logger,
} }