diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-01 13:27:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-01 13:27:17 -0400 |
commit | 1b88b678cf14946c4392bccfd9db2ff8510066ee (patch) | |
tree | 2b83b71166121cf0a85b3a8869627a481bd0a5de /pkg/domain/infra/tunnel | |
parent | c6a896b0c705415a9115dff354b0a19a2c08ce50 (diff) | |
parent | 641f0ccc4eb999af3c2a01d709769287ba45451c (diff) | |
download | podman-1b88b678cf14946c4392bccfd9db2ff8510066ee.tar.gz podman-1b88b678cf14946c4392bccfd9db2ff8510066ee.tar.bz2 podman-1b88b678cf14946c4392bccfd9db2ff8510066ee.zip |
Merge pull request #11707 from rhatdan/play
Add podman play kube --no-hosts options
Diffstat (limited to 'pkg/domain/infra/tunnel')
-rw-r--r-- | pkg/domain/infra/tunnel/play.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/tunnel/play.go b/pkg/domain/infra/tunnel/play.go index e39751a18..0b1c3d2ca 100644 --- a/pkg/domain/infra/tunnel/play.go +++ b/pkg/domain/infra/tunnel/play.go @@ -13,7 +13,7 @@ func (ic *ContainerEngine) PlayKube(ctx context.Context, path string, opts entit options.WithCertDir(opts.CertDir).WithQuiet(opts.Quiet).WithSignaturePolicy(opts.SignaturePolicy).WithConfigMaps(opts.ConfigMaps) options.WithLogDriver(opts.LogDriver).WithNetwork(opts.Network).WithSeccompProfileRoot(opts.SeccompProfileRoot) options.WithStaticIPs(opts.StaticIPs).WithStaticMACs(opts.StaticMACs) - + options.WithNoHosts(opts.NoHosts) if s := opts.SkipTLSVerify; s != types.OptionalBoolUndefined { options.WithSkipTLSVerify(s == types.OptionalBoolTrue) } |