diff --git a/containerd/containerd.go b/containerd/containerd.go index c002c2e..93692c9 100644 --- a/containerd/containerd.go +++ b/containerd/containerd.go @@ -29,6 +29,7 @@ import ( "github.com/containerd/containerd/cio" "github.com/containerd/containerd/contrib/seccomp" "github.com/containerd/containerd/oci" + refdocker "github.com/containerd/containerd/reference/docker" specs "github.com/opencontainers/runtime-spec/specs-go" ) @@ -66,7 +67,12 @@ func (d *Driver) pullImage(imageName string) (containerd.Image, error) { ctxWithTimeout, cancel := context.WithTimeout(d.ctxContainerd, 90*time.Second) defer cancel() - return d.client.Pull(ctxWithTimeout, imageName, containerd.WithPullUnpack) + named, err := refdocker.ParseDockerRef(imageName) + if err != nil { + return nil, err + } + + return d.client.Pull(ctxWithTimeout, named.String(), containerd.WithPullUnpack) } func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskConfig) (containerd.Container, error) { diff --git a/example/capabilities.nomad b/example/capabilities.nomad index ce62fab..57a1321 100644 --- a/example/capabilities.nomad +++ b/example/capabilities.nomad @@ -6,7 +6,7 @@ job "capabilities" { driver = "containerd-driver" config { - image = "docker.io/library/ubuntu:16.04" + image = "ubuntu:16.04" command = "sleep" args = ["600s"] readonly_rootfs = true diff --git a/example/dns.nomad b/example/dns.nomad index 99cee16..e531726 100644 --- a/example/dns.nomad +++ b/example/dns.nomad @@ -15,7 +15,7 @@ job "dns" { task "dns-task" { driver = "containerd-driver" config { - image = "docker.io/library/ubuntu:16.04" + image = "ubuntu:16.04" command = "sleep" args = ["600s"] } diff --git a/example/extra_hosts.nomad b/example/extra_hosts.nomad index c044523..5a8e51e 100644 --- a/example/extra_hosts.nomad +++ b/example/extra_hosts.nomad @@ -5,7 +5,7 @@ job "extra_hosts" { task "extra_hosts-task" { driver = "containerd-driver" config { - image = "docker.io/library/ubuntu:16.04" + image = "ubuntu:16.04" extra_hosts = ["postgres:127.0.1.1", "redis:127.0.1.2"] host_network = true command = "sleep" diff --git a/example/hello.nomad b/example/hello.nomad index a9488a9..32835b0 100644 --- a/example/hello.nomad +++ b/example/hello.nomad @@ -6,7 +6,7 @@ job "hello" { driver = "containerd-driver" config { - image = "docker.io/shm32/hello:world" + image = "shm32/hello:world" } resources { diff --git a/example/privileged.nomad b/example/privileged.nomad index 2ef1db7..7dc5715 100644 --- a/example/privileged.nomad +++ b/example/privileged.nomad @@ -6,7 +6,7 @@ job "privileged" { driver = "containerd-driver" config { - image = "docker.io/library/ubuntu:16.04" + image = "ubuntu:16.04" command = "sleep" args = ["600s"] privileged = true diff --git a/example/redis.nomad b/example/redis.nomad index c88254e..028533a 100644 --- a/example/redis.nomad +++ b/example/redis.nomad @@ -6,7 +6,7 @@ job "redis" { driver = "containerd-driver" config { - image = "docker.io/library/redis:alpine" + image = "redis:alpine" seccomp = true cwd = "/home/redis" } diff --git a/example/signal.nomad b/example/signal.nomad index 765b8ba..d2815c0 100644 --- a/example/signal.nomad +++ b/example/signal.nomad @@ -6,7 +6,7 @@ job "signal" { driver = "containerd-driver" config { - image = "docker.io/shm32/signal_handler:1.0" + image = "shm32/signal_handler:1.0" } resources { diff --git a/example/stress.nomad b/example/stress.nomad index 5851ada..0fb7120 100644 --- a/example/stress.nomad +++ b/example/stress.nomad @@ -6,7 +6,7 @@ job "stress" { driver = "containerd-driver" config { - image = "docker.io/shm32/stress:1.0" + image = "shm32/stress:1.0" } restart { diff --git a/example/volume_mount.nomad b/example/volume_mount.nomad index 89eb6f2..df03528 100644 --- a/example/volume_mount.nomad +++ b/example/volume_mount.nomad @@ -18,7 +18,7 @@ job "volume_mount" { task "volume_mount-task" { driver = "containerd-driver" config { - image = "docker.io/library/ubuntu:16.04" + image = "ubuntu:16.04" command = "sleep" args = ["600s"] }