From 96b0f0a1704ac1e52eebe59fa24f1145cb6bc817 Mon Sep 17 00:00:00 2001 From: Dawn Chen Date: Wed, 1 Apr 2015 14:04:17 -0700 Subject: [PATCH] Small cleanup on api/types.go --- pkg/api/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/api/types.go b/pkg/api/types.go index 10b6272a16d..cb43bf7bd08 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -610,8 +610,8 @@ type ContainerStatus struct { RestartCount int `json:"restartCount"` // TODO(dchen1107): Need to decide how to represent this in v1beta3 Image string `json:"image"` - ImageID string `json:"imageID" description:"ID of the container's image"` - ContainerID string `json:"containerID,omitempty" description:"container's ID in the format 'docker://'"` + ImageID string `json:"imageID"` + ContainerID string `json:"containerID,omitempty"` } // PodPhase is a label for the condition of a pod at the current time.