|
56 | 56 | %[1]s rollback frontend-2
|
57 | 57 |
|
58 | 58 | # 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`) |
60 | 63 | )
|
61 | 64 |
|
62 | 65 | // NewCmdRollback creates a CLI rollback command.
|
@@ -86,9 +89,9 @@ func NewCmdRollback(fullName string, f *clientcmd.Factory, out io.Writer) *cobra
|
86 | 89 | cmd.Flags().BoolVar(&opts.IncludeStrategy, "change-strategy", false, "If true, include the previous deployment's strategy in the rollback")
|
87 | 90 | cmd.Flags().BoolVar(&opts.IncludeScalingSettings, "change-scaling-settings", false, "If true, include the previous deployment's replicationController replica count and selector in the rollback")
|
88 | 91 | 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.") |
91 | 92 | cmd.MarkFlagFilename("template")
|
| 93 | + |
| 94 | + kcmdutil.AddPrinterFlags(cmd) |
92 | 95 | 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.")
|
93 | 96 |
|
94 | 97 | return cmd
|
@@ -151,6 +154,8 @@ func (o *RollbackOptions) Complete(f *clientcmd.Factory, cmd *cobra.Command, arg
|
151 | 154 |
|
152 | 155 | o.out = out
|
153 | 156 |
|
| 157 | + o.Format = kcmdutil.GetFlagString(cmd, "output") |
| 158 | + |
154 | 159 | if len(o.Format) > 0 {
|
155 | 160 | o.printer, err = f.PrinterForOptions(kcmdutil.ExtractCmdPrintOptions(cmd, false))
|
156 | 161 | if err != nil {
|
|
0 commit comments