Add comments (notes).

This commit is contained in:
Shishir Mahajan 2021-02-23 19:00:10 -08:00
parent b342dd1dfa
commit 24d7f2d73b
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
2 changed files with 4 additions and 1 deletions

View File

@ -186,6 +186,10 @@ func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskC
mounts = append(mounts, allocMount)
}
// User will specify extra_hosts to be added to container's /etc/hosts.
// If host_network=true, extra_hosts will be added to host's /etc/hosts.
// If host_network=false, extra hosts will be added to the default /etc/hosts provided to the container.
// If the user doesn't set anything (host_network, extra_hosts), a default /etc/hosts will be provided to the container.
var extraHostsMount specs.Mount
hostsFile := containerConfig.TaskDirSrc + "/etc_hosts"
if len(config.ExtraHosts) > 0 {

View File

@ -47,7 +47,6 @@ func BuildEtcHosts(hostsFile string) error {
return err
}
}
return ioutil.WriteFile(hostsFile, content.Bytes(), 0644)
}