2017-07-12 17:37:16 +00:00
|
|
|
% kpod(1) kpod-load - Simple tool to load an image from an archive to containers-storage
|
|
|
|
% Urvashi Mohnani
|
|
|
|
# kpod-load "1" "July 2017" "kpod"
|
|
|
|
|
|
|
|
## NAME
|
2017-08-13 10:35:20 +00:00
|
|
|
kpod-load - Load an image from docker archive
|
2017-07-12 17:37:16 +00:00
|
|
|
|
|
|
|
## SYNOPSIS
|
|
|
|
**kpod load**
|
|
|
|
**NAME[:TAG|@DIGEST]**
|
2017-09-28 15:42:25 +00:00
|
|
|
[**--input**|**-i**]
|
|
|
|
[**--quiet**|**-q**]
|
2017-07-12 17:37:16 +00:00
|
|
|
[**--help**|**-h**]
|
|
|
|
|
|
|
|
## DESCRIPTION
|
2017-08-02 20:32:44 +00:00
|
|
|
**kpod load** copies an image from either **docker-archive** or **oci-archive** stored
|
|
|
|
on the local machine. **kpod load** reads from stdin by default or a file if the **input** flag is set.
|
2017-07-12 17:37:16 +00:00
|
|
|
The **quiet** flag suppresses the output when set.
|
|
|
|
|
|
|
|
**kpod [GLOBAL OPTIONS]**
|
|
|
|
|
|
|
|
**kpod load [GLOBAL OPTIONS]**
|
|
|
|
|
2017-09-28 15:42:25 +00:00
|
|
|
**kpod load [OPTIONS] NAME[:TAG|@DIGEST]**
|
2017-07-12 17:37:16 +00:00
|
|
|
|
|
|
|
## OPTIONS
|
|
|
|
|
|
|
|
**--input, -i**
|
|
|
|
Read from archive file, default is STDIN
|
|
|
|
|
|
|
|
**--quiet, -q**
|
|
|
|
Suppress the output
|
|
|
|
|
2017-10-13 00:35:08 +00:00
|
|
|
**--signature-policy="PATHNAME"**
|
|
|
|
|
|
|
|
Pathname of a signature policy file to use. It is not recommended that this
|
|
|
|
option be used, as the default behavior of using the system-wide default policy
|
|
|
|
(frequently */etc/containers/policy.json*) is most often preferred
|
|
|
|
|
2017-07-12 17:37:16 +00:00
|
|
|
## EXAMPLES
|
|
|
|
|
|
|
|
```
|
|
|
|
# kpod load --quiet -i fedora.tar
|
|
|
|
```
|
|
|
|
|
2017-10-13 00:35:08 +00:00
|
|
|
```
|
|
|
|
# kpod load -q --signature-policy /etc/containers/policy.json -i fedora.tar
|
|
|
|
```
|
|
|
|
|
2017-07-12 17:37:16 +00:00
|
|
|
```
|
|
|
|
# kpod load < fedora.tar
|
|
|
|
Getting image source signatures
|
|
|
|
Copying blob sha256:5bef08742407efd622d243692b79ba0055383bbce12900324f75e56f589aedb0
|
|
|
|
0 B / 4.03 MB [---------------------------------------------------------------]
|
|
|
|
Copying config sha256:7328f6f8b41890597575cbaadc884e7386ae0acc53b747401ebce5cf0d624560
|
|
|
|
0 B / 1.48 KB [---------------------------------------------------------------]
|
|
|
|
Writing manifest to image destination
|
|
|
|
Storing signatures
|
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
# cat fedora.tar | kpod load
|
|
|
|
Getting image source signatures
|
|
|
|
Copying blob sha256:5bef08742407efd622d243692b79ba0055383bbce12900324f75e56f589aedb0
|
|
|
|
0 B / 4.03 MB [---------------------------------------------------------------]
|
|
|
|
Copying config sha256:7328f6f8b41890597575cbaadc884e7386ae0acc53b747401ebce5cf0d624560
|
|
|
|
0 B / 1.48 KB [---------------------------------------------------------------]
|
|
|
|
Writing manifest to image destination
|
|
|
|
Storing signatures
|
|
|
|
```
|
|
|
|
|
|
|
|
## SEE ALSO
|
|
|
|
kpod(1), kpod-save(1), crio(8), crio.conf(5)
|
|
|
|
|
|
|
|
## HISTORY
|
|
|
|
July 2017, Originally compiled by Urvashi Mohnani <umohnani@redhat.com>
|