mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08:00

Followup to #17486: stricter checks on --format. * If a subcommand offers autocompletion for templates, it must also offer a '--format json' option. * If a subcommand has a --format option that DOES NOT offer autocompletion for templates, it must be listed in a hardcoded grandparented-in table of commands where that's not applicable. (Mostly commands like build, commit, save, where "format" is used in the context of "oci/docker"). Only likely to trigger on PRs which add new subcommands, and is intended to catch oversights. Also, test for alphanumeric order in man page tables. Sort all existing tables. Signed-off-by: Ed Santiago <santiago@redhat.com>
44 lines
1.6 KiB
Markdown
44 lines
1.6 KiB
Markdown
% podman-system-connection-list 1
|
|
|
|
## NAME
|
|
podman\-system\-connection\-list - List the destination for the Podman service(s)
|
|
|
|
## SYNOPSIS
|
|
**podman system connection list** [*options*]
|
|
|
|
**podman system connection ls** [*options*]
|
|
|
|
## DESCRIPTION
|
|
List ssh destination(s) for podman service(s).
|
|
|
|
## OPTIONS
|
|
|
|
#### **--format**, **-f**=*format*
|
|
|
|
Change the default output format. This can be of a supported type like 'json' or a Go template.
|
|
Valid placeholders for the Go template listed below:
|
|
|
|
| **Placeholder** | **Description** |
|
|
| --------------- | ----------------------------------------------------------------------------- |
|
|
| .Default | Indicates whether connection is the default |
|
|
| .Identity | Path to file containing SSH identity |
|
|
| .Name | Connection Name/Identifier |
|
|
| .URI | URI to podman service. Valid schemes are ssh://[user@]*host*[:port]*Unix domain socket*[?secure=True], unix://*Unix domain socket*, and tcp://localhost[:*port*] |
|
|
|
|
#### **--quiet**, **-q**
|
|
|
|
Only show connection names
|
|
|
|
## EXAMPLE
|
|
```
|
|
$ podman system connection list
|
|
Name URI Identity Default
|
|
devl ssh://root@example.com:/run/podman/podman.sock ~/.ssh/id_rsa True
|
|
devl ssh://user@example.com:/run/user/1000/podman/podman.sock ~/.ssh/id_rsa False
|
|
```
|
|
## SEE ALSO
|
|
**[podman(1)](podman.1.md)**, **[podman-system(1)](podman-system.1.md)**, **[podman-system-connection(1)](podman-system-connection.1.md)**
|
|
|
|
## HISTORY
|
|
July 2020, Originally compiled by Jhon Honce (jhonce at redhat dot com)
|