Fix review comments.

This commit is contained in:
Shishir Mahajan 2021-03-25 06:26:11 -07:00
parent 947c05e01f
commit a657d6ce68
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
3 changed files with 7 additions and 7 deletions

View File

@ -95,7 +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. | | **image** | string | yes | OCI image (docker is also OCI compatible) for your container. |
| **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 | Overwrite the default ENTRYPOINT of the image. | | **entrypoint** | []string | no | A string list overriding the image's entrypoint. |
| **cwd** | string | no | Specify the current working directory for your container process. If the directory does not exist, one will be created for you. | | **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. | | **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`. | | **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`. |

View File

@ -76,7 +76,7 @@ func (d *Driver) pullImage(imageName string) (containerd.Image, error) {
} }
func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskConfig) (containerd.Container, error) { func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskConfig) (containerd.Container, error) {
if config.Command != "" && config.Entrypoint != "" { if config.Command != "" && config.Entrypoint != nil {
return nil, fmt.Errorf("Both command and entrypoint are set. Only one of them needs to be set.") return nil, fmt.Errorf("Both command and entrypoint are set. Only one of them needs to be set.")
} }
@ -84,8 +84,8 @@ func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskC
var args []string var args []string
if config.Command != "" { if config.Command != "" {
args = append(args, config.Command) args = append(args, config.Command)
} else if config.Entrypoint != "" { } else if config.Entrypoint != nil && config.Entrypoint[0] != "" {
args = append(args, config.Entrypoint) args = append(args, config.Entrypoint...)
} }
// Arguments to the command set by the user. // Arguments to the command set by the user.
@ -95,7 +95,7 @@ func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskC
var opts []oci.SpecOpts var opts []oci.SpecOpts
if config.Entrypoint != "" { if config.Entrypoint != nil {
opts = append(opts, oci.WithProcessArgs(args...)) opts = append(opts, oci.WithProcessArgs(args...))
} else { } else {
opts = append(opts, oci.WithImageConfigArgs(containerConfig.Image, args)) opts = append(opts, oci.WithImageConfigArgs(containerConfig.Image, args))

View File

@ -103,7 +103,7 @@ var (
hclspec.NewLiteral("true"), hclspec.NewLiteral("true"),
), ),
"extra_hosts": hclspec.NewAttr("extra_hosts", "list(string)", false), "extra_hosts": hclspec.NewAttr("extra_hosts", "list(string)", false),
"entrypoint": hclspec.NewAttr("entrypoint", "string", false), "entrypoint": hclspec.NewAttr("entrypoint", "list(string)", false),
"seccomp": hclspec.NewAttr("seccomp", "bool", false), "seccomp": hclspec.NewAttr("seccomp", "bool", false),
"seccomp_profile": hclspec.NewAttr("seccomp_profile", "string", false), "seccomp_profile": hclspec.NewAttr("seccomp_profile", "string", false),
"readonly_rootfs": hclspec.NewAttr("readonly_rootfs", "bool", false), "readonly_rootfs": hclspec.NewAttr("readonly_rootfs", "bool", false),
@ -162,7 +162,7 @@ type TaskConfig struct {
Privileged bool `codec:"privileged"` Privileged bool `codec:"privileged"`
HostDNS bool `codec:"host_dns"` HostDNS bool `codec:"host_dns"`
ExtraHosts []string `codec:"extra_hosts"` ExtraHosts []string `codec:"extra_hosts"`
Entrypoint string `codec:"entrypoint"` Entrypoint []string `codec:"entrypoint"`
ReadOnlyRootfs bool `codec:"readonly_rootfs"` ReadOnlyRootfs bool `codec:"readonly_rootfs"`
HostNetwork bool `codec:"host_network"` HostNetwork bool `codec:"host_network"`
Mounts []Mount `codec:"mounts"` Mounts []Mount `codec:"mounts"`