Merge pull request #958 from umohnani8/man_pages
Made some changes to man pages
This commit is contained in:
commit
3394b3b2d6
7 changed files with 66 additions and 48 deletions
|
@ -8,6 +8,7 @@ kpod-export - Export container's filesystem contents as a tar archive
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**kpod export**
|
**kpod export**
|
||||||
**CONTAINER**
|
**CONTAINER**
|
||||||
|
[**--output**|**-o**]
|
||||||
[**--help**|**-h**]
|
[**--help**|**-h**]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
|
@ -19,18 +20,13 @@ redirected to a file using the **output flag**.
|
||||||
|
|
||||||
**kpod export [GLOBAL OPTIONS]**
|
**kpod export [GLOBAL OPTIONS]**
|
||||||
|
|
||||||
**kpod export [OPTIONS] CONTAINER [GLOBAL OPTIONS]**
|
**kpod export [OPTIONS] CONTAINER**
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
**--output, -o**
|
**--output, -o**
|
||||||
Write to a file, default is STDOUT
|
Write to a file, default is STDOUT
|
||||||
|
|
||||||
## GLOBAL OPTIONS
|
|
||||||
|
|
||||||
**--help, -h**
|
|
||||||
Print usage statement
|
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -6,7 +6,13 @@
|
||||||
kpod-history - Shows the history of an image
|
kpod-history - Shows the history of an image
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**kpod history [OPTIONS] IMAGE[:TAG|DIGEST]**
|
**kpod history**
|
||||||
|
**IMAGE[:TAG|DIGEST]**
|
||||||
|
[**--human**|**-H**]
|
||||||
|
[**--no-trunc**]
|
||||||
|
[**--quiet**|**-q**]
|
||||||
|
[**--format**]
|
||||||
|
[**--help**|**-h**]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**kpod history** displays the history of an image by printing out information
|
**kpod history** displays the history of an image by printing out information
|
||||||
|
@ -29,12 +35,9 @@ Valid placeholders for the Go template are listed below:
|
||||||
|
|
||||||
**kpod [GLOBAL OPTIONS]**
|
**kpod [GLOBAL OPTIONS]**
|
||||||
|
|
||||||
**kpod [GLOBAL OPTIONS] history [OPTIONS]**
|
**kpod history [GLOBAL OPTIONS]**
|
||||||
|
|
||||||
## GLOBAL OPTIONS
|
**kpod history [OPTIONS] IMAGE[:TAG|DIGEST]**
|
||||||
|
|
||||||
**--help, -h**
|
|
||||||
Print usage statement
|
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
|
@ -51,15 +54,47 @@ Valid placeholders for the Go template are listed below:
|
||||||
Alter the output for a format like 'json' or a Go template.
|
Alter the output for a format like 'json' or a Go template.
|
||||||
|
|
||||||
|
|
||||||
## COMMANDS
|
## EXAMPLES
|
||||||
|
|
||||||
**kpod history debian**
|
```
|
||||||
|
# kpod history debian
|
||||||
|
ID CREATED CREATED BY SIZE COMMENT
|
||||||
|
b676ca55e4f2c 9 weeks ago /bin/sh -c #(nop) CMD ["bash"] 0 B
|
||||||
|
<missing> 9 weeks ago /bin/sh -c #(nop) ADD file:ebba725fb97cea4... 45.14 MB
|
||||||
|
```
|
||||||
|
|
||||||
**kpod history --no-trunc=true --human=false debian**
|
```
|
||||||
|
# kpod history --no-trunc=true --human=false debian
|
||||||
|
ID CREATED CREATED BY SIZE COMMENT
|
||||||
|
b676ca55e4f2c 2017-07-24T16:52:55Z /bin/sh -c #(nop) CMD ["bash"] 0
|
||||||
|
<missing> 2017-07-24T16:52:54Z /bin/sh -c #(nop) ADD file:ebba725fb97cea4... 45142935
|
||||||
|
```
|
||||||
|
|
||||||
**kpod history --format "{{.ID}} {{.Created}}" debian**
|
```
|
||||||
|
# kpod history --format "{{.ID}} {{.Created}}" debian
|
||||||
|
b676ca55e4f2c 9 weeks ago
|
||||||
|
<missing> 9 weeks ago
|
||||||
|
```
|
||||||
|
|
||||||
**kpod history --format json debian**
|
```
|
||||||
|
# kpod history --format json debian
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"id": "b676ca55e4f2c0ce53d0636438c5372d3efeb5ae99b676fa5a5d1581bad46060",
|
||||||
|
"created": "2017-07-24T16:52:55.195062314Z",
|
||||||
|
"createdBy": "/bin/sh -c #(nop) CMD [\"bash\"]",
|
||||||
|
"size": 0,
|
||||||
|
"comment": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "b676ca55e4f2c0ce53d0636438c5372d3efeb5ae99b676fa5a5d1581bad46060",
|
||||||
|
"created": "2017-07-24T16:52:54.898893387Z",
|
||||||
|
"createdBy": "/bin/sh -c #(nop) ADD file:ebba725fb97cea45d0b1b35ccc8144e766fcfc9a78530465c23b0c4674b14042 in / ",
|
||||||
|
"size": 45142935,
|
||||||
|
"comment": ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
```
|
||||||
|
|
||||||
## history
|
## history
|
||||||
Show the history of an image
|
Show the history of an image
|
||||||
|
|
|
@ -8,6 +8,8 @@ kpod-load - Load an image from docker archive
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**kpod load**
|
**kpod load**
|
||||||
**NAME[:TAG|@DIGEST]**
|
**NAME[:TAG|@DIGEST]**
|
||||||
|
[**--input**|**-i**]
|
||||||
|
[**--quiet**|**-q**]
|
||||||
[**--help**|**-h**]
|
[**--help**|**-h**]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
|
@ -19,7 +21,7 @@ The **quiet** flag suppresses the output when set.
|
||||||
|
|
||||||
**kpod load [GLOBAL OPTIONS]**
|
**kpod load [GLOBAL OPTIONS]**
|
||||||
|
|
||||||
**kpod load [OPTIONS] NAME[:TAG|@DIGEST] [GLOBAL OPTIONS]**
|
**kpod load [OPTIONS] NAME[:TAG|@DIGEST]**
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
|
@ -29,11 +31,6 @@ Read from archive file, default is STDIN
|
||||||
**--quiet, -q**
|
**--quiet, -q**
|
||||||
Suppress the output
|
Suppress the output
|
||||||
|
|
||||||
## GLOBAL OPTIONS
|
|
||||||
|
|
||||||
**--help, -h**
|
|
||||||
Print usage statement
|
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -6,7 +6,12 @@
|
||||||
kpod-ps - Prints out information about containers
|
kpod-ps - Prints out information about containers
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**kpod ps [OPTIONS] CONTAINER**
|
**kpod ps**
|
||||||
|
[**--all**|**-a**]
|
||||||
|
[**--no-trunc**]
|
||||||
|
[**--quiet**|**-q**]
|
||||||
|
[**--fromat**]
|
||||||
|
[**--help**|**-h**]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**kpod ps** lists the running containers on the system. Use the **--all** flag to view
|
**kpod ps** lists the running containers on the system. Use the **--all** flag to view
|
||||||
|
@ -22,12 +27,9 @@ all the containers information. By default it lists:
|
||||||
|
|
||||||
**kpod [GLOBAL OPTIONS]**
|
**kpod [GLOBAL OPTIONS]**
|
||||||
|
|
||||||
**kpod [GLOBAL OPTIONS] ps [OPTIONS]**
|
**kpod ps [GLOBAL OPTIONS]**
|
||||||
|
|
||||||
## GLOBAL OPTIONS
|
**kpod ps [OPTIONS]**
|
||||||
|
|
||||||
**--help, -h**
|
|
||||||
Print usage statement
|
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
|
@ -89,7 +91,7 @@ Valid filters are listed below:
|
||||||
| since | [ID] or [Name] Containers created since this container |
|
| since | [ID] or [Name] Containers created since this container |
|
||||||
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
||||||
|
|
||||||
## COMMANDS
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo kpod ps -a
|
sudo kpod ps -a
|
||||||
|
|
|
@ -50,12 +50,7 @@ Image stored in local container/storage
|
||||||
|
|
||||||
**kpod pull [GLOBAL OPTIONS]**
|
**kpod pull [GLOBAL OPTIONS]**
|
||||||
|
|
||||||
**kpod pull NAME[:TAG|@DIGEST] [GLOBAL OPTIONS]**
|
**kpod pull NAME[:TAG|@DIGEST]**
|
||||||
|
|
||||||
## GLOBAL OPTIONS
|
|
||||||
|
|
||||||
**--help, -h**
|
|
||||||
Print usage statement
|
|
||||||
|
|
||||||
## SEE ALSO
|
## SEE ALSO
|
||||||
kpod(1), crio(8), crio.conf(5)
|
kpod(1), crio(8), crio.conf(5)
|
||||||
|
|
|
@ -8,6 +8,9 @@ kpod-save - Save an image to docker-archive or oci-archive
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**kpod save**
|
**kpod save**
|
||||||
**NAME[:TAG]**
|
**NAME[:TAG]**
|
||||||
|
[**--quiet**|**-q**]
|
||||||
|
[**--format**]
|
||||||
|
[**--output**|**-o**]
|
||||||
[**--help**|**-h**]
|
[**--help**|**-h**]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
|
@ -20,7 +23,7 @@ The **quiet** flag suppresses the output when set.
|
||||||
|
|
||||||
**kpod save [GLOBAL OPTIONS]**
|
**kpod save [GLOBAL OPTIONS]**
|
||||||
|
|
||||||
**kpod save [OPTIONS] NAME[:TAG] [GLOBAL OPTIONS]**
|
**kpod save [OPTIONS] NAME[:TAG]**
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
|
@ -36,11 +39,6 @@ Save image to **oci-archive**
|
||||||
**--quiet, -q**
|
**--quiet, -q**
|
||||||
Suppress the output
|
Suppress the output
|
||||||
|
|
||||||
## GLOBAL OPTIONS
|
|
||||||
|
|
||||||
**--help, -h**
|
|
||||||
Print usage statement
|
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -15,12 +15,7 @@ OS, and Architecture.
|
||||||
|
|
||||||
**kpod [GLOBAL OPTIONS]**
|
**kpod [GLOBAL OPTIONS]**
|
||||||
|
|
||||||
**kpod [GLOBAL OPTIONS] version [OPTIONS]**
|
**kpod version**
|
||||||
|
|
||||||
## GLOBAL OPTIONS
|
|
||||||
|
|
||||||
**--help, -h**
|
|
||||||
Print usage statement
|
|
||||||
|
|
||||||
## SEE ALSO
|
## SEE ALSO
|
||||||
kpod(1), crio(8), crio.conf(5)
|
kpod(1), crio(8), crio.conf(5)
|
||||||
|
|
Loading…
Reference in a new issue