From 007e6d9ff9e3627fea5c926491965ed781e7be98 Mon Sep 17 00:00:00 2001 From: Piotr Szczesniak Date: Wed, 8 Apr 2015 14:39:41 +0200 Subject: [PATCH] Removed TODO comment from ContainerStatuses in PodInfo Fixes #6551 --- pkg/api/v1beta3/types.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkg/api/v1beta3/types.go b/pkg/api/v1beta3/types.go index 1eaba565c0f..3acbbc17ce9 100644 --- a/pkg/api/v1beta3/types.go +++ b/pkg/api/v1beta3/types.go @@ -766,10 +766,7 @@ type PodStatus struct { PodIP string `json:"podIP,omitempty" description:"IP address allocated to the pod; routable at least within the cluster; empty if not yet allocated"` // The list has one entry per container in the manifest. Each entry is currently the output - // of `docker inspect`. This output format is *not* final and should not be relied - // upon. - // TODO: Make real decisions about what our info should look like. Re-enable fuzz test - // when we have done this. + // of `docker inspect`. ContainerStatuses []ContainerStatus `json:"containerStatuses,omitempty" description:"list of container statuses"` }