diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-10-03 12:45:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-03 12:45:43 -0700 |
commit | 7af4074c6f96d0fabd2ab5dd6c5773053f80aa08 (patch) | |
tree | 804d6ca257d7c6649b1fda6ea6a00e3a06ab3bee /cmd/podman/remoteclientconfig/config.go | |
parent | 86c8650c2328a4a611e614c7220627feae4d4eae (diff) | |
parent | c831a64bb1dbce86109d1c2e00535e89a7fc5f81 (diff) | |
download | podman-7af4074c6f96d0fabd2ab5dd6c5773053f80aa08.tar.gz podman-7af4074c6f96d0fabd2ab5dd6c5773053f80aa08.tar.bz2 podman-7af4074c6f96d0fabd2ab5dd6c5773053f80aa08.zip |
Merge pull request #4161 from afbjorklund/machine-env
Handle environment variables from podman-machine
Diffstat (limited to 'cmd/podman/remoteclientconfig/config.go')
-rw-r--r-- | cmd/podman/remoteclientconfig/config.go | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cmd/podman/remoteclientconfig/config.go b/cmd/podman/remoteclientconfig/config.go index 13880a868..3faa7954a 100644 --- a/cmd/podman/remoteclientconfig/config.go +++ b/cmd/podman/remoteclientconfig/config.go @@ -9,10 +9,12 @@ type RemoteConfig struct { // RemoteConnection describes the attributes of a podman-remote endpoint type RemoteConnection struct { - Destination string `toml:"destination"` - Username string `toml:"username"` - IsDefault bool `toml:"default"` - Port int `toml:"port"` + Destination string `toml:"destination"` + Username string `toml:"username"` + IsDefault bool `toml:"default"` + Port int `toml:"port"` + IdentityFile string `toml:"identity_file"` + IgnoreHosts bool `toml:"ignore_hosts"` } // GetConfigFilePath is a simple helper to export the configuration file's |