Bind mount ${NOMAD_ALLOC_DIR} into the container.

This commit is contained in:
Shishir Mahajan 2020-09-23 13:39:11 -07:00
parent dca562d630
commit 8d56f64297
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
2 changed files with 12 additions and 3 deletions

View File

@ -41,7 +41,7 @@ func (d *Driver) pullImage(imageName string) (containerd.Image, error) {
return d.client.Pull(d.ctxContainerd, imageName, containerd.WithPullUnpack) return d.client.Pull(d.ctxContainerd, imageName, containerd.WithPullUnpack)
} }
func (d *Driver) createContainer(image containerd.Image, containerName, containerSnapshotName, containerdRuntime, netnsPath, secretsDir, taskDir string, env []string, config *TaskConfig) (containerd.Container, error) { func (d *Driver) createContainer(image containerd.Image, containerName, containerSnapshotName, containerdRuntime, netnsPath, secretsDir, taskDir, allocDir string, env []string, config *TaskConfig) (containerd.Container, error) {
if config.Command == "" && len(config.Args) > 0 { if config.Command == "" && len(config.Args) > 0 {
return nil, fmt.Errorf("Command is empty. Cannot set --args without --command.") return nil, fmt.Errorf("Command is empty. Cannot set --args without --command.")
} }
@ -135,6 +135,12 @@ func (d *Driver) createContainer(image containerd.Image, containerName, containe
mounts = append(mounts, taskMount) mounts = append(mounts, taskMount)
} }
// Setup "/alloc" (NOMAD_ALLOC_DIR) in the container.
if allocDir != "" {
allocMount := buildMountpoint("bind", "/alloc", allocDir, []string{"rbind", "ro"})
mounts = append(mounts, allocMount)
}
if len(mounts) > 0 { if len(mounts) > 0 {
opts = append(opts, oci.WithMounts(mounts)) opts = append(opts, oci.WithMounts(mounts))
} }

View File

@ -357,7 +357,7 @@ func (d *Driver) StartTask(cfg *drivers.TaskConfig) (*drivers.TaskHandle, *drive
// Setup environment variables. // Setup environment variables.
var env []string var env []string
var secretsDir, taskDir string var secretsDir, taskDir, allocDir string
for key, val := range cfg.Env { for key, val := range cfg.Env {
if skipOverride(key) { if skipOverride(key) {
continue continue
@ -368,6 +368,9 @@ func (d *Driver) StartTask(cfg *drivers.TaskConfig) (*drivers.TaskHandle, *drive
if key == "NOMAD_TASK_DIR" { if key == "NOMAD_TASK_DIR" {
taskDir = val taskDir = val
} }
if key == "NOMAD_ALLOC_DIR" {
allocDir = val
}
env = append(env, fmt.Sprintf("%s=%s", key, val)) env = append(env, fmt.Sprintf("%s=%s", key, val))
} }
@ -377,7 +380,7 @@ func (d *Driver) StartTask(cfg *drivers.TaskConfig) (*drivers.TaskHandle, *drive
netnsPath = cfg.NetworkIsolation.Path netnsPath = cfg.NetworkIsolation.Path
} }
container, err := d.createContainer(image, containerName, containerSnapshotName, d.config.ContainerdRuntime, netnsPath, secretsDir, taskDir, env, &driverConfig) container, err := d.createContainer(image, containerName, containerSnapshotName, d.config.ContainerdRuntime, netnsPath, secretsDir, taskDir, allocDir, env, &driverConfig)
if err != nil { if err != nil {
return nil, nil, fmt.Errorf("Error in creating container: %v", err) return nil, nil, fmt.Errorf("Error in creating container: %v", err)
} }