Add support for image_pull_timeout.
This commit is contained in:
parent
143104273d
commit
5b7969448a
@ -93,6 +93,7 @@ More detailed instructions are in the [`example README.md`](https://github.com/R
|
|||||||
| Option | Type | Required | Description |
|
| Option | Type | Required | Description |
|
||||||
| :---: | :---: | :---: | :--- |
|
| :---: | :---: | :---: | :--- |
|
||||||
| **image** | string | yes | OCI image (docker is also OCI compatible) for your container. |
|
| **image** | string | yes | OCI image (docker is also OCI compatible) for your container. |
|
||||||
|
| **image_pull_timeout** | string | no | A time duration that controls how long `containerd-driver` will wait before cancelling an in-progress pull of the OCI image as specified in `image`. Defaults to `"5m"`. |
|
||||||
| **command** | string | no | Command to override command defined in the image. |
|
| **command** | string | no | Command to override command defined in the image. |
|
||||||
| **args** | []string | no | Arguments to the command. |
|
| **args** | []string | no | Arguments to the command. |
|
||||||
| **entrypoint** | []string | no | A string list overriding the image's entrypoint. |
|
| **entrypoint** | []string | no | A string list overriding the image's entrypoint. |
|
||||||
|
@ -61,8 +61,13 @@ func (d *Driver) getContainerdVersion() (containerd.Version, error) {
|
|||||||
return d.client.Version(ctxWithTimeout)
|
return d.client.Version(ctxWithTimeout)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *Driver) pullImage(imageName string) (containerd.Image, error) {
|
func (d *Driver) pullImage(imageName, imagePullTimeout string) (containerd.Image, error) {
|
||||||
ctxWithTimeout, cancel := context.WithTimeout(d.ctxContainerd, 90*time.Second)
|
pullTimeout, err := time.ParseDuration(imagePullTimeout)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("Failed to parse image_pull_timeout: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
ctxWithTimeout, cancel := context.WithTimeout(d.ctxContainerd, pullTimeout)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
|
||||||
named, err := refdocker.ParseDockerRef(imageName)
|
named, err := refdocker.ParseDockerRef(imageName)
|
||||||
|
@ -104,6 +104,10 @@ var (
|
|||||||
hclspec.NewAttr("host_dns", "bool", false),
|
hclspec.NewAttr("host_dns", "bool", false),
|
||||||
hclspec.NewLiteral("true"),
|
hclspec.NewLiteral("true"),
|
||||||
),
|
),
|
||||||
|
"image_pull_timeout": hclspec.NewDefault(
|
||||||
|
hclspec.NewAttr("image_pull_timeout", "string", false),
|
||||||
|
hclspec.NewLiteral(`"5m"`),
|
||||||
|
),
|
||||||
"extra_hosts": hclspec.NewAttr("extra_hosts", "list(string)", false),
|
"extra_hosts": hclspec.NewAttr("extra_hosts", "list(string)", false),
|
||||||
"entrypoint": hclspec.NewAttr("entrypoint", "list(string)", false),
|
"entrypoint": hclspec.NewAttr("entrypoint", "list(string)", false),
|
||||||
"seccomp": hclspec.NewAttr("seccomp", "bool", false),
|
"seccomp": hclspec.NewAttr("seccomp", "bool", false),
|
||||||
@ -153,24 +157,25 @@ type Mount struct {
|
|||||||
// TaskConfig contains configuration information for a task that runs with
|
// TaskConfig contains configuration information for a task that runs with
|
||||||
// this plugin
|
// this plugin
|
||||||
type TaskConfig struct {
|
type TaskConfig struct {
|
||||||
Image string `codec:"image"`
|
Image string `codec:"image"`
|
||||||
Command string `codec:"command"`
|
Command string `codec:"command"`
|
||||||
Args []string `codec:"args"`
|
Args []string `codec:"args"`
|
||||||
CapAdd []string `codec:"cap_add"`
|
CapAdd []string `codec:"cap_add"`
|
||||||
CapDrop []string `codec:"cap_drop"`
|
CapDrop []string `codec:"cap_drop"`
|
||||||
Cwd string `codec:"cwd"`
|
Cwd string `codec:"cwd"`
|
||||||
Devices []string `codec:"devices"`
|
Devices []string `codec:"devices"`
|
||||||
Seccomp bool `codec:"seccomp"`
|
Seccomp bool `codec:"seccomp"`
|
||||||
SeccompProfile string `codec:"seccomp_profile"`
|
SeccompProfile string `codec:"seccomp_profile"`
|
||||||
Sysctl hclutils.MapStrStr `codec:"sysctl"`
|
Sysctl hclutils.MapStrStr `codec:"sysctl"`
|
||||||
Privileged bool `codec:"privileged"`
|
Privileged bool `codec:"privileged"`
|
||||||
PidsLimit int64 `codec:"pids_limit"`
|
PidsLimit int64 `codec:"pids_limit"`
|
||||||
HostDNS bool `codec:"host_dns"`
|
HostDNS bool `codec:"host_dns"`
|
||||||
ExtraHosts []string `codec:"extra_hosts"`
|
ImagePullTimeout string `codec:"image_pull_timeout"`
|
||||||
Entrypoint []string `codec:"entrypoint"`
|
ExtraHosts []string `codec:"extra_hosts"`
|
||||||
ReadOnlyRootfs bool `codec:"readonly_rootfs"`
|
Entrypoint []string `codec:"entrypoint"`
|
||||||
HostNetwork bool `codec:"host_network"`
|
ReadOnlyRootfs bool `codec:"readonly_rootfs"`
|
||||||
Mounts []Mount `codec:"mounts"`
|
HostNetwork bool `codec:"host_network"`
|
||||||
|
Mounts []Mount `codec:"mounts"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// TaskState is the runtime state which is encoded in the handle returned to
|
// TaskState is the runtime state which is encoded in the handle returned to
|
||||||
@ -404,7 +409,7 @@ func (d *Driver) StartTask(cfg *drivers.TaskConfig) (*drivers.TaskHandle, *drive
|
|||||||
containerConfig.ContainerName = containerName
|
containerConfig.ContainerName = containerName
|
||||||
|
|
||||||
var err error
|
var err error
|
||||||
containerConfig.Image, err = d.pullImage(driverConfig.Image)
|
containerConfig.Image, err = d.pullImage(driverConfig.Image, driverConfig.ImagePullTimeout)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, fmt.Errorf("Error in pulling image %s: %v", driverConfig.Image, err)
|
return nil, nil, fmt.Errorf("Error in pulling image %s: %v", driverConfig.Image, err)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user