Skip to content

Commit 5428dd7

Browse files
committed
update completions
1 parent 6a9c123 commit 5428dd7

File tree

3 files changed

+33
-13
lines changed

3 files changed

+33
-13
lines changed

contrib/completions/bash/oc

+13-3
Original file line numberDiff line numberDiff line change
@@ -15784,6 +15784,8 @@ _oc_rollback()
1578415784
flags_with_completion=()
1578515785
flags_completion=()
1578615786

15787+
flags+=("--allow-missing-template-keys")
15788+
local_nonpersistent_flags+=("--allow-missing-template-keys")
1578715789
flags+=("--change-scaling-settings")
1578815790
local_nonpersistent_flags+=("--change-scaling-settings")
1578915791
flags+=("--change-strategy")
@@ -15793,15 +15795,23 @@ _oc_rollback()
1579315795
flags+=("--dry-run")
1579415796
flags+=("-d")
1579515797
local_nonpersistent_flags+=("--dry-run")
15798+
flags+=("--no-headers")
15799+
local_nonpersistent_flags+=("--no-headers")
1579615800
flags+=("--output=")
1579715801
two_word_flags+=("-o")
1579815802
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=")
1579915812
flags+=("--template=")
1580015813
flags_with_completion+=("--template")
1580115814
flags_completion+=("_filedir")
15802-
two_word_flags+=("-t")
15803-
flags_with_completion+=("-t")
15804-
flags_completion+=("_filedir")
1580515815
local_nonpersistent_flags+=("--template=")
1580615816
flags+=("--to-version=")
1580715817
local_nonpersistent_flags+=("--to-version=")

contrib/completions/zsh/oc

+13-3
Original file line numberDiff line numberDiff line change
@@ -15926,6 +15926,8 @@ _oc_rollback()
1592615926
flags_with_completion=()
1592715927
flags_completion=()
1592815928

15929+
flags+=("--allow-missing-template-keys")
15930+
local_nonpersistent_flags+=("--allow-missing-template-keys")
1592915931
flags+=("--change-scaling-settings")
1593015932
local_nonpersistent_flags+=("--change-scaling-settings")
1593115933
flags+=("--change-strategy")
@@ -15935,15 +15937,23 @@ _oc_rollback()
1593515937
flags+=("--dry-run")
1593615938
flags+=("-d")
1593715939
local_nonpersistent_flags+=("--dry-run")
15940+
flags+=("--no-headers")
15941+
local_nonpersistent_flags+=("--no-headers")
1593815942
flags+=("--output=")
1593915943
two_word_flags+=("-o")
1594015944
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=")
1594115954
flags+=("--template=")
1594215955
flags_with_completion+=("--template")
1594315956
flags_completion+=("_filedir")
15944-
two_word_flags+=("-t")
15945-
flags_with_completion+=("-t")
15946-
flags_completion+=("_filedir")
1594715957
local_nonpersistent_flags+=("--template=")
1594815958
flags+=("--to-version=")
1594915959
local_nonpersistent_flags+=("--to-version=")

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var (
3636
# Start a new rollout based on the latest images defined in the image change triggers.
3737
%[1]s rollout latest dc/nginx
3838
39-
# Print the deployment config that would be rolled out in JSON format, without performing the rollout.
39+
# Print the rolled out deployment config
4040
%[1]s rollout latest dc/nginx -o json`)
4141
)
4242

@@ -128,9 +128,11 @@ func (o *RolloutLatestOptions) Complete(f *clientcmd.Factory, cmd *cobra.Command
128128
o.output = kcmdutil.GetFlagString(cmd, "output")
129129
o.again = kcmdutil.GetFlagBool(cmd, "again")
130130

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+
}
134136
}
135137

136138
return nil
@@ -196,9 +198,7 @@ func (o RolloutLatestOptions) RunRolloutLatest() error {
196198
if o.output == "revision" {
197199
fmt.Fprintf(o.out, fmt.Sprintf("%d", dc.Status.LatestVersion))
198200
return nil
199-
}
200-
201-
if len(o.output) > 0 {
201+
} else if len(o.output) > 0 {
202202
return o.printer.PrintObj(dc, o.out)
203203
}
204204

0 commit comments

Comments
 (0)