mirror of
https://github.com/containers/podman.git
synced 2025-06-26 12:56:45 +08:00
Merge pull request #12027 from rhatdan/connect
Change podman connection list to use default field
This commit is contained in:
@ -44,6 +44,7 @@ func init() {
|
||||
type namedDestination struct {
|
||||
Name string
|
||||
config.Destination
|
||||
Default bool
|
||||
}
|
||||
|
||||
func list(cmd *cobra.Command, _ []string) error {
|
||||
@ -60,12 +61,14 @@ func list(cmd *cobra.Command, _ []string) error {
|
||||
"Identity": "Identity",
|
||||
"Name": "Name",
|
||||
"URI": "URI",
|
||||
"Default": "Default",
|
||||
}}
|
||||
|
||||
rows := make([]namedDestination, 0)
|
||||
for k, v := range cfg.Engine.ServiceDestinations {
|
||||
def := false
|
||||
if k == cfg.Engine.ActiveService {
|
||||
k += "*"
|
||||
def = true
|
||||
}
|
||||
|
||||
r := namedDestination{
|
||||
@ -74,6 +77,7 @@ func list(cmd *cobra.Command, _ []string) error {
|
||||
Identity: v.Identity,
|
||||
URI: v.URI,
|
||||
},
|
||||
Default: def,
|
||||
}
|
||||
rows = append(rows, r)
|
||||
}
|
||||
@ -82,7 +86,7 @@ func list(cmd *cobra.Command, _ []string) error {
|
||||
return rows[i].Name < rows[j].Name
|
||||
})
|
||||
|
||||
format := "{{.Name}}\t{{.Identity}}\t{{.URI}}\n"
|
||||
format := "{{.Name}}\t{{.URI}}\t{{.Identity}}\t{{.Default}}\n"
|
||||
switch {
|
||||
case report.IsJSON(cmd.Flag("format").Value.String()):
|
||||
buf, err := registry.JSONLibrary().MarshalIndent(rows, "", " ")
|
||||
|
@ -538,7 +538,7 @@ Not implemented.
|
||||
|
||||
#### **--log-driver**="*driver*"
|
||||
|
||||
Logging driver for the container. Currently available options are **k8s-file**, **journald**, **none** and **passthrough**, with **json-file** aliased to **k8s-file** for scripting compatibility.
|
||||
Logging driver for the container. Currently available options are **k8s-file**, **journald**, **none** and **passthrough**, with **json-file** aliased to **k8s-file** for scripting compatibility. (Default journald)
|
||||
|
||||
The **passthrough** driver passes down the standard streams (stdin, stdout, stderr) to the
|
||||
container. It is not allowed with the remote Podman client and on a tty, since it is
|
||||
|
@ -23,14 +23,14 @@ Valid placeholders for the Go template listed below:
|
||||
| *.Name* | Connection Name/Identifier |
|
||||
| *.Identity* | Path to file containing SSH identity |
|
||||
| *.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*] |
|
||||
|
||||
An asterisk is appended to the default connection.
|
||||
| *.Default* | Indicates whether connection is the default |
|
||||
|
||||
## EXAMPLE
|
||||
```
|
||||
$ podman system connection list
|
||||
Name URI Identity
|
||||
devl ssh://root@example.com/run/podman/podman.sock ~/.ssh/id_rsa
|
||||
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-system(1) , containers.conf(5)
|
||||
|
@ -24,8 +24,8 @@ The user will be prompted for the ssh login password or key file pass phrase as
|
||||
## EXAMPLE
|
||||
```
|
||||
$ podman system connection list
|
||||
Name URI Identity
|
||||
devl ssh://root@example.com/run/podman/podman.sock ~/.ssh/id_rsa
|
||||
Name URI Identity Default
|
||||
devl ssh://root@example.com/run/podman/podman.sock ~/.ssh/id_rsa true
|
||||
```
|
||||
## SEE ALSO
|
||||
podman-system(1) , containers.conf(5)
|
||||
|
@ -208,13 +208,13 @@ var _ = Describe("podman system connection", func() {
|
||||
session = podmanTest.Podman(cmd)
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session).Should(Exit(0))
|
||||
Expect(session.Out).Should(Say("Name *Identity *URI"))
|
||||
Expect(session.Out).Should(Say("Name *URI *Identity *Default"))
|
||||
|
||||
cmd = []string{"system", "connection", "list", "--format", "{{.Name}}"}
|
||||
session = podmanTest.Podman(cmd)
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session).Should(Exit(0))
|
||||
Expect(session.OutputToString()).Should(Equal("devl* qe"))
|
||||
Expect(session.OutputToString()).Should(Equal("devl qe"))
|
||||
})
|
||||
|
||||
It("failed default", func() {
|
||||
|
Reference in New Issue
Block a user