From cc6d261e1ae9498e868ca5829e7713888cf853fe Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Wed, 8 Aug 2018 15:55:30 -0400 Subject: [PATCH] Image and snapshot key are mutable Signed-off-by: Michael Crosby --- containers/containers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/containers.go b/containers/containers.go index c624164e8..e6a562730 100644 --- a/containers/containers.go +++ b/containers/containers.go @@ -40,7 +40,7 @@ type Container struct { // Image specifies the image reference used for a container. // - // This property is optional but immutable. + // This property is optional and mutable. Image string // Runtime specifies which runtime should be used when launching container @@ -60,7 +60,7 @@ type Container struct { // look up the mounts from the snapshot service and include those on the // task create request. // - // This field is not required but immutable. + // This field is not required but mutable. SnapshotKey string // Snapshotter specifies the snapshotter name used for rootfs