Commit be1996ee authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #35112 from errordeveloper/fix-35105

Automatic merge from submit-queue Get rid of output line that break automated usage of `kubectl set image` **What this PR does / why we need it**: **Which issue this PR fixes**: fixes #35105 **Special notes for your reviewer**: We could consider printing it to stderr, or using `IsTerminal()`, but I went for the simplest thing first. **Release note**: ```release-note Make `kubectl set image` easier to script ```
parents 6b56d7ba 2494462e
...@@ -199,7 +199,6 @@ func (o *ImageOptions) Run() error { ...@@ -199,7 +199,6 @@ func (o *ImageOptions) Run() error {
} }
if o.Local { if o.Local {
fmt.Fprintln(o.Out, "running in local mode...")
return o.PrintObject(o.Cmd, o.Mapper, info.Object, o.Out) return o.PrintObject(o.Cmd, o.Mapper, info.Object, o.Out)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment