-
Notifications
You must be signed in to change notification settings - Fork 348
Conversation
docs/crictl.md
Outdated
@@ -30,12 +30,45 @@ debug: true | |||
``` | |||
|
|||
## Download and Inspect a Container Image | |||
The pull command tells the container runtime to load a container image from a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/load/download?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
docs/crictl.md
Outdated
## Directly Load a Container Image | ||
Another way to load an image into the container runtime is with the load | ||
command. With the load command you inject a container image into the container | ||
runtime from a file. First you need to create the container image. For example |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
container image tarball
or
container image file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not changed? :P
docs/crictl.md
Outdated
Another way to load an image into the container runtime is with the load | ||
command. With the load command you inject a container image into the container | ||
runtime from a file. First you need to create the container image. For example | ||
to create a pause container using Docker: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
image tarball
or
image file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not changed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
refreshing..
docs/crictl.md
Outdated
67ddbfb20a22: Pull complete | ||
Digest: sha256:59eec8837a4d942cc19a52b8c09ea75121acc38114a2c68b98983ce9356b8610 | ||
Status: Downloaded newer image for k8s.gcr.io/pause-amd64:3.1 | ||
$ docker save k8s.gcr.io/pause-amd64:3.1 > pause.tar |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: -o
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah works both ways.. docker documents it both ways..
done
Signed-off-by: Mike Brown <[email protected]>
/lgtm |
Address issue #638 by showing detailed steps for creating and loading images.
Signed-off-by: Mike Brown [email protected]