Add comments.

This commit is contained in:
Shishir Mahajan 2021-03-25 11:00:54 -07:00
parent a657d6ce68
commit b93e718ac7
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A

View File

@ -96,8 +96,11 @@ func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskC
var opts []oci.SpecOpts var opts []oci.SpecOpts
if config.Entrypoint != nil { if config.Entrypoint != nil {
// WithProcessArgs replaces the args on the generated spec.
opts = append(opts, oci.WithProcessArgs(args...)) opts = append(opts, oci.WithProcessArgs(args...))
} else { } else {
// WithImageConfigArgs configures the spec to from the configuration of an Image
// with additional args that replaces the CMD of the image.
opts = append(opts, oci.WithImageConfigArgs(containerConfig.Image, args)) opts = append(opts, oci.WithImageConfigArgs(containerConfig.Image, args))
} }