diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-14 22:31:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-14 22:31:58 +0100 |
commit | 1a9128d1e4851df7c0316e0b861e70605fd262f6 (patch) | |
tree | 887ffe79dd00a78b118218541ea7373df083bfaf /cmd/podman/cliconfig | |
parent | 18bf883eeb08d7cb5bd1c999e43f1140be4f787d (diff) | |
parent | a8b149b406e9565067c1f281e86071942123163e (diff) | |
download | podman-1a9128d1e4851df7c0316e0b861e70605fd262f6.tar.gz podman-1a9128d1e4851df7c0316e0b861e70605fd262f6.tar.bz2 podman-1a9128d1e4851df7c0316e0b861e70605fd262f6.zip |
Merge pull request #2320 from QiWang19/stdinPW
--password-stdin flag in `podman login`
Diffstat (limited to 'cmd/podman/cliconfig')
-rw-r--r-- | cmd/podman/cliconfig/config.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cmd/podman/cliconfig/config.go b/cmd/podman/cliconfig/config.go index f38bcaa62..f5d6a8685 100644 --- a/cmd/podman/cliconfig/config.go +++ b/cmd/podman/cliconfig/config.go @@ -177,12 +177,13 @@ type LoadValues struct { type LoginValues struct { PodmanCommand - Password string - Username string - Authfile string - CertDir string - GetLogin bool - TlsVerify bool + Password string + StdinPassword bool + Username string + Authfile string + CertDir string + GetLogin bool + TlsVerify bool } type LogoutValues struct { |