7
7
"strings"
8
8
9
9
"github.com/spf13/cobra"
10
- "github.com/spf13/pflag"
11
10
12
11
ktemplates "k8s.io/kubernetes/pkg/kubectl/cmd/templates"
13
12
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
@@ -20,8 +19,9 @@ import (
20
19
"github.com/openshift/origin/pkg/cmd/server/start"
21
20
"github.com/openshift/origin/pkg/cmd/templates"
22
21
cmdutil "github.com/openshift/origin/pkg/cmd/util"
22
+ cmdversion "github.com/openshift/origin/pkg/cmd/version"
23
23
"github.com/openshift/origin/pkg/oc/cli/cmd"
24
- "github.com/openshift/origin/pkg/oc/cli/util/clientcmd "
24
+ osversion "github.com/openshift/origin/pkg/version/openshift "
25
25
)
26
26
27
27
var (
@@ -91,12 +91,10 @@ func NewCommandOpenShift(name string) *cobra.Command {
91
91
Run : kcmdutil .DefaultSubCommandRun (out ),
92
92
}
93
93
94
- f := clientcmd .New (pflag .NewFlagSet ("" , pflag .ContinueOnError ))
95
-
96
94
startAllInOne , _ := start .NewCommandStartAllInOne (name , out , errout )
97
95
root .AddCommand (startAllInOne )
98
96
root .AddCommand (newCompletionCommand ("completion" , name + " completion" ))
99
- root .AddCommand (cmd .NewCmdVersion (name , f , out , cmd. VersionOptions { PrintEtcdVersion : true , IsServer : true } ))
97
+ root .AddCommand (cmdversion .NewCmdVersion (name , osversion . Get (), os . Stdout ))
100
98
root .AddCommand (cmd .NewCmdOptions (out ))
101
99
102
100
// TODO: add groups
@@ -105,43 +103,7 @@ func NewCommandOpenShift(name string) *cobra.Command {
105
103
return root
106
104
}
107
105
108
- var (
109
- completion_long = ktemplates .LongDesc (`
110
- Output shell completion code for the given shell (bash or zsh).
111
-
112
- This command prints shell code which must be evaluation to provide interactive
113
- completion of kubectl commands.` )
114
-
115
- completion_example = ktemplates .Examples (`
116
- $ source <(kubectl completion bash)
117
-
118
- will load the kubectl completion code for bash. Note that this depends on the bash-completion
119
- framework. It must be sourced before sourcing the kubectl completion, i.e. on the Mac:
120
-
121
- $ brew install bash-completion
122
- $ source $(brew --prefix)/etc/bash_completion
123
- $ source <(kubectl completion bash)
124
-
125
- If you use zsh, the following will load kubectl zsh completion:
126
-
127
- $ source <(kubectl completion zsh)` )
128
- )
129
-
130
106
func newCompletionCommand (name , fullName string ) * cobra.Command {
131
- out := os .Stdout
132
-
133
- completion := & cobra.Command {
134
- Use : fmt .Sprintf ("%s SHELL" , name ),
135
- Short : "Output shell completion code for the given shell (bash or zsh)" ,
136
- Long : completion_long ,
137
- Example : completion_example ,
138
- Run : func (cmd * cobra.Command , args []string ) {
139
-
140
- },
141
- }
142
-
143
- f := clientcmd .New (completion .PersistentFlags ())
144
-
145
- return cmd .NewCmdCompletion (fullName , f , out )
107
+ return cmd .NewCmdCompletion (fullName , os .Stdout )
146
108
147
109
}
0 commit comments