diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-23 14:01:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 14:01:36 -0400 |
commit | 92af85fcc2cb35b04ed74072ffd54d65b936d288 (patch) | |
tree | c1424a43cc606ed11c8b0b5fb5f9f199ab0d83c5 /pkg/domain/entities | |
parent | 73514b1465fe2f79b82d017cdb11d587d6f7df3d (diff) | |
parent | 7377e578a9402a416579be92cee44c3b3786f81a (diff) | |
download | podman-92af85fcc2cb35b04ed74072ffd54d65b936d288.tar.gz podman-92af85fcc2cb35b04ed74072ffd54d65b936d288.tar.bz2 podman-92af85fcc2cb35b04ed74072ffd54d65b936d288.zip |
Merge pull request #6493 from jwhonce/wip/connection
V2 podman system connection
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/engine.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/domain/entities/engine.go b/pkg/domain/entities/engine.go index 1f056bad7..6776d09e9 100644 --- a/pkg/domain/entities/engine.go +++ b/pkg/domain/entities/engine.go @@ -41,9 +41,8 @@ type PodmanConfig struct { ConmonPath string // --conmon flag will set Engine.ConmonPath CPUProfile string // Hidden: Should CPU profile be taken EngineMode EngineMode // ABI or Tunneling mode - Identities []string // ssh identities for connecting to server + Identity string // ssh identity for connecting to server MaxWorks int // maximum number of parallel threads - PassPhrase string // ssh passphrase for identity for connecting to server RegistriesConf string // allows for specifying a custom registries.conf Remote bool // Connection to Podman API Service will use RESTful API RuntimePath string // --runtime flag will set Engine.RuntimePath |