File tree 3 files changed +33
-13
lines changed
3 files changed +33
-13
lines changed Original file line number Diff line number Diff line change @@ -15784,6 +15784,8 @@ _oc_rollback()
15784
15784
flags_with_completion=()
15785
15785
flags_completion=()
15786
15786
15787
+ flags+=("--allow-missing-template-keys")
15788
+ local_nonpersistent_flags+=("--allow-missing-template-keys")
15787
15789
flags+=("--change-scaling-settings")
15788
15790
local_nonpersistent_flags+=("--change-scaling-settings")
15789
15791
flags+=("--change-strategy")
@@ -15793,15 +15795,23 @@ _oc_rollback()
15793
15795
flags+=("--dry-run")
15794
15796
flags+=("-d")
15795
15797
local_nonpersistent_flags+=("--dry-run")
15798
+ flags+=("--no-headers")
15799
+ local_nonpersistent_flags+=("--no-headers")
15796
15800
flags+=("--output=")
15797
15801
two_word_flags+=("-o")
15798
15802
local_nonpersistent_flags+=("--output=")
15803
+ flags+=("--output-version=")
15804
+ local_nonpersistent_flags+=("--output-version=")
15805
+ flags+=("--show-all")
15806
+ flags+=("-a")
15807
+ local_nonpersistent_flags+=("--show-all")
15808
+ flags+=("--show-labels")
15809
+ local_nonpersistent_flags+=("--show-labels")
15810
+ flags+=("--sort-by=")
15811
+ local_nonpersistent_flags+=("--sort-by=")
15799
15812
flags+=("--template=")
15800
15813
flags_with_completion+=("--template")
15801
15814
flags_completion+=("_filedir")
15802
- two_word_flags+=("-t")
15803
- flags_with_completion+=("-t")
15804
- flags_completion+=("_filedir")
15805
15815
local_nonpersistent_flags+=("--template=")
15806
15816
flags+=("--to-version=")
15807
15817
local_nonpersistent_flags+=("--to-version=")
Original file line number Diff line number Diff line change @@ -15926,6 +15926,8 @@ _oc_rollback()
15926
15926
flags_with_completion=()
15927
15927
flags_completion=()
15928
15928
15929
+ flags+=("--allow-missing-template-keys")
15930
+ local_nonpersistent_flags+=("--allow-missing-template-keys")
15929
15931
flags+=("--change-scaling-settings")
15930
15932
local_nonpersistent_flags+=("--change-scaling-settings")
15931
15933
flags+=("--change-strategy")
@@ -15935,15 +15937,23 @@ _oc_rollback()
15935
15937
flags+=("--dry-run")
15936
15938
flags+=("-d")
15937
15939
local_nonpersistent_flags+=("--dry-run")
15940
+ flags+=("--no-headers")
15941
+ local_nonpersistent_flags+=("--no-headers")
15938
15942
flags+=("--output=")
15939
15943
two_word_flags+=("-o")
15940
15944
local_nonpersistent_flags+=("--output=")
15945
+ flags+=("--output-version=")
15946
+ local_nonpersistent_flags+=("--output-version=")
15947
+ flags+=("--show-all")
15948
+ flags+=("-a")
15949
+ local_nonpersistent_flags+=("--show-all")
15950
+ flags+=("--show-labels")
15951
+ local_nonpersistent_flags+=("--show-labels")
15952
+ flags+=("--sort-by=")
15953
+ local_nonpersistent_flags+=("--sort-by=")
15941
15954
flags+=("--template=")
15942
15955
flags_with_completion+=("--template")
15943
15956
flags_completion+=("_filedir")
15944
- two_word_flags+=("-t")
15945
- flags_with_completion+=("-t")
15946
- flags_completion+=("_filedir")
15947
15957
local_nonpersistent_flags+=("--template=")
15948
15958
flags+=("--to-version=")
15949
15959
local_nonpersistent_flags+=("--to-version=")
Original file line number Diff line number Diff line change 36
36
# Start a new rollout based on the latest images defined in the image change triggers.
37
37
%[1]s rollout latest dc/nginx
38
38
39
- # Print the deployment config that would be rolled out in JSON format, without performing the rollout.
39
+ # Print the rolled out deployment config
40
40
%[1]s rollout latest dc/nginx -o json` )
41
41
)
42
42
@@ -128,9 +128,11 @@ func (o *RolloutLatestOptions) Complete(f *clientcmd.Factory, cmd *cobra.Command
128
128
o .output = kcmdutil .GetFlagString (cmd , "output" )
129
129
o .again = kcmdutil .GetFlagBool (cmd , "again" )
130
130
131
- o .printer , err = f .PrinterForOptions (kcmdutil .ExtractCmdPrintOptions (cmd , false ))
132
- if err != nil {
133
- return err
131
+ if o .output != "revision" {
132
+ o .printer , err = f .PrinterForOptions (kcmdutil .ExtractCmdPrintOptions (cmd , false ))
133
+ if err != nil {
134
+ return err
135
+ }
134
136
}
135
137
136
138
return nil
@@ -196,9 +198,7 @@ func (o RolloutLatestOptions) RunRolloutLatest() error {
196
198
if o .output == "revision" {
197
199
fmt .Fprintf (o .out , fmt .Sprintf ("%d" , dc .Status .LatestVersion ))
198
200
return nil
199
- }
200
-
201
- if len (o .output ) > 0 {
201
+ } else if len (o .output ) > 0 {
202
202
return o .printer .PrintObj (dc , o .out )
203
203
}
204
204
You can’t perform that action at this time.
0 commit comments