Merge pull request #420 from mrunalp/fix_hostname
Set the container hostname same as pod hostname
This commit is contained in:
commit
fa467a30f1
3 changed files with 7 additions and 0 deletions
|
@ -435,6 +435,10 @@ func (s *Server) createSandboxContainer(ctx context.Context, containerID string,
|
|||
specgen.AddBindMount(sb.resolvPath, "/etc/resolv.conf", []string{"ro"})
|
||||
}
|
||||
|
||||
if sb.hostname != "" {
|
||||
specgen.SetHostname(sb.hostname)
|
||||
}
|
||||
|
||||
specgen.AddAnnotation("ocid/name", containerName)
|
||||
specgen.AddAnnotation("ocid/sandbox_id", sb.id)
|
||||
specgen.AddAnnotation("ocid/sandbox_name", sb.infraContainer.Name())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue