Pull OCI image.

This commit is contained in:
Shishir Mahajan 2020-05-11 15:43:50 -07:00
parent 589b30429b
commit d0ef91a0d9
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
2 changed files with 13 additions and 10 deletions

View File

@ -11,3 +11,7 @@ func (d *Driver) isContainerdRunning() (bool, error) {
func (d *Driver) getContainerdVersion() (containerd.Version, error) { func (d *Driver) getContainerdVersion() (containerd.Version, error) {
return d.client.Version(d.ctxContainerd) return d.client.Version(d.ctxContainerd)
} }
func (d *Driver) pullOCIImage(imageName string) (containerd.Image, error) {
return d.client.Pull(d.ctxContainerd, imageName, containerd.WithPullUnpack)
}

View File

@ -23,7 +23,7 @@ const (
// pluginName is the name of the plugin // pluginName is the name of the plugin
// this is used for logging and (along with the version) for uniquely // this is used for logging and (along with the version) for uniquely
// identifying plugin binaries fingerprinted by the client // identifying plugin binaries fingerprinted by the client
pluginName = "containerd" pluginName = "nomad-driver-containerd"
// pluginVersion allows the client to identify and use newer versions of // pluginVersion allows the client to identify and use newer versions of
// an installed plugin // an installed plugin
@ -73,7 +73,7 @@ var (
// https://godoc.org/github.com/hashicorp/nomad/plugins/drivers#Capabilities // https://godoc.org/github.com/hashicorp/nomad/plugins/drivers#Capabilities
capabilities = &drivers.Capabilities{ capabilities = &drivers.Capabilities{
SendSignals: true, SendSignals: true,
Exec: false, Exec: true,
FSIsolation: drivers.FSIsolationNone, FSIsolation: drivers.FSIsolationNone,
} }
) )
@ -184,19 +184,11 @@ func (d *Driver) SetConfig(cfg *base.Config) error {
// Save the configuration to the plugin // Save the configuration to the plugin
d.config = &config d.config = &config
// If your driver agent configuration requires any complex validation
// (some dependency between attributes) or special data parsing (the
// string "10s" into a time.Interval) you can do it here and update the
// value in d.config.
// Save the Nomad agent configuration // Save the Nomad agent configuration
if cfg.AgentConfig != nil { if cfg.AgentConfig != nil {
d.nomadConfig = cfg.AgentConfig.Driver d.nomadConfig = cfg.AgentConfig.Driver
} }
// Here you can use the config values to initialize any resources that are
// shared by all tasks that use this driver, such as a daemon process.
return nil return nil
} }
@ -292,6 +284,13 @@ func (d *Driver) StartTask(cfg *drivers.TaskConfig) (*drivers.TaskHandle, *drive
// https://github.com/moby/moby/blob/master/pkg/namesgenerator/names-generator.go // https://github.com/moby/moby/blob/master/pkg/namesgenerator/names-generator.go
containerName := namesgenerator.GetRandomName(1) containerName := namesgenerator.GetRandomName(1)
image, err := d.pullOCIImage(driverConfig.Image)
if err != nil {
return nil, nil, fmt.Errorf("Error in pulling OCI image: %v", err)
}
d.logger.Info("Successfully pulled %s image\n", image.Name())
h := &taskHandle{ h := &taskHandle{
containerName: containerName, containerName: containerName,
taskConfig: cfg, taskConfig: cfg,