From b93e718ac790a88c6fead5fb2ad2eab0f872c96d Mon Sep 17 00:00:00 2001 From: Shishir Mahajan Date: Thu, 25 Mar 2021 11:00:54 -0700 Subject: [PATCH] Add comments. --- containerd/containerd.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/containerd/containerd.go b/containerd/containerd.go index df2b604..f36729e 100644 --- a/containerd/containerd.go +++ b/containerd/containerd.go @@ -96,8 +96,11 @@ func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskC var opts []oci.SpecOpts if config.Entrypoint != nil { + // WithProcessArgs replaces the args on the generated spec. opts = append(opts, oci.WithProcessArgs(args...)) } 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)) }