From 947c05e01fdc7c21aaf2c52f418f4c8ae718edf2 Mon Sep 17 00:00:00 2001 From: Shishir Mahajan Date: Tue, 23 Mar 2021 15:07:29 -0700 Subject: [PATCH] Add support for entrypoint. Signed-off-by: Shishir Mahajan --- README.md | 1 + containerd/containerd.go | 14 ++++++++++---- containerd/driver.go | 2 ++ 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b592eac..670b945 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,7 @@ More detailed instructions are in the [`example README.md`](https://github.com/R | **image** | string | yes | OCI image (docker is also OCI compatible) for your container. | | **command** | string | no | Command to override command defined in the image. | | **args** | []string | no | Arguments to the command. | +| **entrypoint** | string | no | Overwrite the default ENTRYPOINT of the image. | | **cwd** | string | no | Specify the current working directory for your container process. If the directory does not exist, one will be created for you. | | **privileged** | bool | no | Run container in privileged mode. Your container will have all linux capabilities when running in privileged mode. | | **host_dns** | bool | no | Default (`true`). By default, a container launched using `containerd-driver` will use host `/etc/resolv.conf`. This is similar to [`docker behavior`](https://docs.docker.com/config/containers/container-networking/#dns-services). However, if you don't want to use host DNS, you can turn off this flag by setting `host_dns=false`. | diff --git a/containerd/containerd.go b/containerd/containerd.go index d7f6ef3..15985b6 100644 --- a/containerd/containerd.go +++ b/containerd/containerd.go @@ -76,14 +76,16 @@ func (d *Driver) pullImage(imageName string) (containerd.Image, error) { } func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskConfig) (containerd.Container, error) { - if config.Command == "" && len(config.Args) > 0 { - return nil, fmt.Errorf("Command is empty. Cannot set --args without --command.") + if config.Command != "" && config.Entrypoint != "" { + return nil, fmt.Errorf("Both command and entrypoint are set. Only one of them needs to be set.") } - // Command set by the user, to override entrypoint or cmd defined in the image. + // Entrypoint or Command set by the user, to override entrypoint or cmd defined in the image. var args []string if config.Command != "" { args = append(args, config.Command) + } else if config.Entrypoint != "" { + args = append(args, config.Entrypoint) } // Arguments to the command set by the user. @@ -93,7 +95,11 @@ func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskC var opts []oci.SpecOpts - opts = append(opts, oci.WithImageConfigArgs(containerConfig.Image, args)) + if config.Entrypoint != "" { + opts = append(opts, oci.WithProcessArgs(args...)) + } else { + opts = append(opts, oci.WithImageConfigArgs(containerConfig.Image, args)) + } if !d.config.AllowPrivileged && config.Privileged { return nil, fmt.Errorf("Running privileged jobs are not allowed. Set allow_privileged to true in plugin config to allow running privileged jobs.") diff --git a/containerd/driver.go b/containerd/driver.go index 4faa060..7e91d32 100644 --- a/containerd/driver.go +++ b/containerd/driver.go @@ -103,6 +103,7 @@ var ( hclspec.NewLiteral("true"), ), "extra_hosts": hclspec.NewAttr("extra_hosts", "list(string)", false), + "entrypoint": hclspec.NewAttr("entrypoint", "string", false), "seccomp": hclspec.NewAttr("seccomp", "bool", false), "seccomp_profile": hclspec.NewAttr("seccomp_profile", "string", false), "readonly_rootfs": hclspec.NewAttr("readonly_rootfs", "bool", false), @@ -161,6 +162,7 @@ type TaskConfig struct { Privileged bool `codec:"privileged"` HostDNS bool `codec:"host_dns"` ExtraHosts []string `codec:"extra_hosts"` + Entrypoint string `codec:"entrypoint"` ReadOnlyRootfs bool `codec:"readonly_rootfs"` HostNetwork bool `codec:"host_network"` Mounts []Mount `codec:"mounts"`