mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 11:21:47 +00:00
Merge pull request #4970 from dchen1107/podstatus
Hide POD container from end users
This commit is contained in:
commit
71e545bf81
@ -91,7 +91,6 @@ func (fakeKubeletClient) GetPodStatus(host, podNamespace, podID string) (api.Pod
|
||||
m := make(api.PodInfo)
|
||||
for k, v := range r.Status.Info {
|
||||
v.Ready = true
|
||||
v.PodIP = "1.2.3.4"
|
||||
m[k] = v
|
||||
}
|
||||
r.Status.Info = m
|
||||
@ -258,8 +257,10 @@ func endpointsSet(c *client.Client, serviceNamespace, serviceID string, endpoint
|
||||
return func() (bool, error) {
|
||||
endpoints, err := c.Endpoints(serviceNamespace).Get(serviceID)
|
||||
if err != nil {
|
||||
glog.Infof("Error on creating endpoints: %v", err)
|
||||
return false, nil
|
||||
}
|
||||
glog.Infof("endpoints: %v", endpoints.Endpoints)
|
||||
return len(endpoints.Endpoints) == endpointCount, nil
|
||||
}
|
||||
}
|
||||
|
@ -590,7 +590,8 @@ func inspectContainer(client DockerInterface, dockerID, containerName, tPath str
|
||||
return &containerStatus, nil
|
||||
}
|
||||
|
||||
// GetDockerPodInfo returns docker info for all containers in the pod/manifest.
|
||||
// GetDockerPodInfo returns docker info for all containers in the pod/manifest and
|
||||
// infrastructure container
|
||||
func GetDockerPodInfo(client DockerInterface, manifest api.PodSpec, podFullName string, uid types.UID) (api.PodInfo, error) {
|
||||
info := api.PodInfo{}
|
||||
expectedContainers := make(map[string]api.Container)
|
||||
|
@ -1722,21 +1722,19 @@ func (kl *Kubelet) GetPodStatus(podFullName string, uid types.UID) (api.PodStatu
|
||||
|
||||
// Assume info is ready to process
|
||||
podStatus.Phase = getPhase(spec, info)
|
||||
podStatus.Info = api.PodInfo{}
|
||||
for _, c := range spec.Containers {
|
||||
containerStatus := info[c.Name]
|
||||
containerStatus.Ready = kl.readiness.IsReady(containerStatus)
|
||||
info[c.Name] = containerStatus
|
||||
podStatus.Info[c.Name] = containerStatus
|
||||
}
|
||||
podStatus.Conditions = append(podStatus.Conditions, getPodReadyCondition(spec, info)...)
|
||||
podStatus.Conditions = append(podStatus.Conditions, getPodReadyCondition(spec, podStatus.Info)...)
|
||||
|
||||
netContainerInfo, found := info[dockertools.PodInfraContainerName]
|
||||
if found {
|
||||
podStatus.PodIP = netContainerInfo.PodIP
|
||||
}
|
||||
|
||||
// TODO(dchen1107): Change Info to list from map
|
||||
podStatus.Info = info
|
||||
|
||||
return podStatus, nil
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user