summaryrefslogtreecommitdiff
path: root/cmd/podman/images/search.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2020-10-05 06:13:28 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2020-10-07 10:19:08 -0400
commitccc5bc167fa2c140e33963bb5cce99f40ff00281 (patch)
tree5cd6445f92921c7015fbe0b9663983165bd58db3 /cmd/podman/images/search.go
parenta7500e54a4646c7db477349e2530ac13df77b8fa (diff)
downloadpodman-ccc5bc167fa2c140e33963bb5cce99f40ff00281.tar.gz
podman-ccc5bc167fa2c140e33963bb5cce99f40ff00281.tar.bz2
podman-ccc5bc167fa2c140e33963bb5cce99f40ff00281.zip
Attempt to turn on some more remote tests
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/images/search.go')
-rw-r--r--cmd/podman/images/search.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/cmd/podman/images/search.go b/cmd/podman/images/search.go
index c7f16a838..b8d989d65 100644
--- a/cmd/podman/images/search.go
+++ b/cmd/podman/images/search.go
@@ -86,11 +86,6 @@ func searchFlags(flags *pflag.FlagSet) {
flags.BoolVar(&searchOptions.NoTrunc, "no-trunc", false, "Do not truncate the output")
flags.StringVar(&searchOptions.Authfile, "authfile", auth.GetDefaultAuthFile(), "Path of the authentication file. Use REGISTRY_AUTH_FILE environment variable to override")
flags.BoolVar(&searchOptions.TLSVerifyCLI, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries")
-
- if registry.IsRemote() {
- _ = flags.MarkHidden("authfile")
- _ = flags.MarkHidden("tls-verify")
- }
}
// imageSearch implements the command for searching images.