mirror of https://github.com/k3s-io/k3s
Merge pull request #20603 from pmorie/pod-ip-debug
Make it easier to debug pod IP flakes for downward APIpull/6/head
commit
25f02f19e1
|
@ -1152,7 +1152,7 @@ func makeMounts(pod *api.Pod, podDir string, container *api.Container, podVolume
|
||||||
// - container is not already mounting on /etc/hosts
|
// - container is not already mounting on /etc/hosts
|
||||||
// When the pause container is being created, its IP is still unknown. Hence, PodIP will not have been set.
|
// When the pause container is being created, its IP is still unknown. Hence, PodIP will not have been set.
|
||||||
mountEtcHostsFile := (pod.Spec.SecurityContext == nil || !pod.Spec.SecurityContext.HostNetwork) && len(pod.Status.PodIP) > 0
|
mountEtcHostsFile := (pod.Spec.SecurityContext == nil || !pod.Spec.SecurityContext.HostNetwork) && len(pod.Status.PodIP) > 0
|
||||||
glog.V(4).Infof("Will create hosts mount for container:%q, podIP:%s: %v", container.Name, pod.Status.PodIP, mountEtcHostsFile)
|
glog.V(3).Infof("container: %v/%v/%v podIP: %q creating hosts mount: %v", pod.Namespace, pod.Name, container.Name, pod.Status.PodIP, mountEtcHostsFile)
|
||||||
mounts := []kubecontainer.Mount{}
|
mounts := []kubecontainer.Mount{}
|
||||||
for _, mount := range container.VolumeMounts {
|
for _, mount := range container.VolumeMounts {
|
||||||
mountEtcHostsFile = mountEtcHostsFile && (mount.MountPath != etcHostsPath)
|
mountEtcHostsFile = mountEtcHostsFile && (mount.MountPath != etcHostsPath)
|
||||||
|
|
Loading…
Reference in New Issue