Skip to content

Commit 6a9c123

Browse files
committed
fix -o panic oc rollback
1 parent 96f2f77 commit 6a9c123

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-5
lines changed

pkg/oc/cli/cmd/rollback.go

+8-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ var (
5656
%[1]s rollback frontend-2
5757
5858
# Perform the rollback manually by piping the JSON of the new config back to %[1]s
59-
%[1]s rollback frontend -o json | %[1]s replace dc/frontend -f -`)
59+
%[1]s rollback frontend -o json | %[1]s replace dc/frontend -f -
60+
61+
# Print the updated deployment configuration in JSON format instead of performing the rollback
62+
%[1]s rollback frontend -o json`)
6063
)
6164

6265
// NewCmdRollback creates a CLI rollback command.
@@ -86,9 +89,9 @@ func NewCmdRollback(fullName string, f *clientcmd.Factory, out io.Writer) *cobra
8689
cmd.Flags().BoolVar(&opts.IncludeStrategy, "change-strategy", false, "If true, include the previous deployment's strategy in the rollback")
8790
cmd.Flags().BoolVar(&opts.IncludeScalingSettings, "change-scaling-settings", false, "If true, include the previous deployment's replicationController replica count and selector in the rollback")
8891
cmd.Flags().BoolVarP(&opts.DryRun, "dry-run", "d", false, "Instead of performing the rollback, describe what the rollback will look like in human-readable form")
89-
cmd.Flags().StringVarP(&opts.Format, "output", "o", "", "Instead of performing the rollback, print the updated deployment configuration in the specified format (json|yaml|name|template|templatefile)")
90-
cmd.Flags().StringVarP(&opts.Template, "template", "t", "", "Template string or path to template file to use when -o=template or -o=templatefile.")
9192
cmd.MarkFlagFilename("template")
93+
94+
kcmdutil.AddPrinterFlags(cmd)
9295
cmd.Flags().Int64Var(&opts.DesiredVersion, "to-version", 0, "A config version to rollback to. Specifying version 0 is the same as omitting a version (the version will be auto-detected). This option is ignored when specifying a deployment.")
9396

9497
return cmd
@@ -151,6 +154,8 @@ func (o *RollbackOptions) Complete(f *clientcmd.Factory, cmd *cobra.Command, arg
151154

152155
o.out = out
153156

157+
o.Format = kcmdutil.GetFlagString(cmd, "output")
158+
154159
if len(o.Format) > 0 {
155160
o.printer, err = f.PrinterForOptions(kcmdutil.ExtractCmdPrintOptions(cmd, false))
156161
if err != nil {

pkg/oc/cli/cmd/rollout/latest.go

+17-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import (
1414
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
1515
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
1616
"k8s.io/kubernetes/pkg/kubectl/resource"
17+
kprinters "k8s.io/kubernetes/pkg/printers"
1718

1819
appsapi "github.com/openshift/origin/pkg/apps/apis/apps"
1920
appsclientinternal "github.com/openshift/origin/pkg/apps/generated/internalclientset/typed/apps/internalversion"
@@ -32,8 +33,11 @@ var (
3233
your image change triggers.`)
3334

3435
rolloutLatestExample = templates.Examples(`
35-
# Start a new rollout based on the latest images defined in the image change triggers.
36-
%[1]s rollout latest dc/nginx`)
36+
# Start a new rollout based on the latest images defined in the image change triggers.
37+
%[1]s rollout latest dc/nginx
38+
39+
# Print the deployment config that would be rolled out in JSON format, without performing the rollout.
40+
%[1]s rollout latest dc/nginx -o json`)
3741
)
3842

3943
// RolloutLatestOptions holds all the options for the `rollout latest` command.
@@ -50,6 +54,8 @@ type RolloutLatestOptions struct {
5054
appsClient appsclientinternal.DeploymentConfigsGetter
5155
kc kclientset.Interface
5256
baseCommandName string
57+
58+
printer kprinters.ResourcePrinter
5359
}
5460

5561
// NewCmdRolloutLatest implements the oc rollout latest subcommand.
@@ -122,6 +128,11 @@ func (o *RolloutLatestOptions) Complete(f *clientcmd.Factory, cmd *cobra.Command
122128
o.output = kcmdutil.GetFlagString(cmd, "output")
123129
o.again = kcmdutil.GetFlagBool(cmd, "again")
124130

131+
o.printer, err = f.PrinterForOptions(kcmdutil.ExtractCmdPrintOptions(cmd, false))
132+
if err != nil {
133+
return err
134+
}
135+
125136
return nil
126137
}
127138

@@ -187,6 +198,10 @@ func (o RolloutLatestOptions) RunRolloutLatest() error {
187198
return nil
188199
}
189200

201+
if len(o.output) > 0 {
202+
return o.printer.PrintObj(dc, o.out)
203+
}
204+
190205
kcmdutil.PrintSuccess(o.mapper, o.output == "name", o.out, info.Mapping.Resource, info.Name, o.DryRun, "rolled out")
191206
return nil
192207
}

0 commit comments

Comments
 (0)