-
Couldn't load subscription status.
- Fork 881
rkt list fails to list pods whose image is removed #1655
rkt list fails to list pods whose image is removed #1655
Conversation
Since we are now able to remove an image without removing the pod, use of the ImageManifest in the rkt list creates a dependency on an image that may not be around, causing rkt list to fail. This change removes that dependency and instead relies on the PodManifest which will be available and should supply the needed information.
Image labels were not being included in the generated PodManifest. Now they are.
55d83b0 to
3b161c1
Compare
|
The fix for this turned out to be a nice cleanup/code removal and caught the missing labels in the generated PodManifest. |
|
LFAD. |
…se-image-is-removed rkt list fails to list pods whose image is removed
|
This actually doesn't fix #1628 as if we run with a pod manifest, the image name can be nil: |
|
Relatedly, even though this might not have caught yifan's case, please On Wed, Oct 21, 2015 at 11:37 AM, Yifan Gu [email protected] wrote:
|
Since we are now able to remove an image without removing the pod, use
of the ImageManifest in the rkt list creates a dependency on an image
that may not be around, causing rkt list to fail.
This change removes that dependency and instead relies on the
PodManifest which will be available and should supply the needed
information.
Also found an issue in the PodManifest generation.
Fixes #1628