@@ -2,7 +2,6 @@ package admin
2
2
3
3
import (
4
4
"fmt"
5
- "io"
6
5
7
6
"github.com/spf13/cobra"
8
7
@@ -43,79 +42,77 @@ var adminLong = ktemplates.LongDesc(`
43
42
Commands for managing a cluster are exposed here. Many administrative
44
43
actions involve interaction with the command-line client as well.` )
45
44
46
- func NewCommandAdmin (name , fullName string , f kcmdutil.Factory , in io. Reader , out io. Writer , errout io. Writer ) * cobra.Command {
45
+ func NewCommandAdmin (name , fullName string , f kcmdutil.Factory , streams genericclioptions. IOStreams ) * cobra.Command {
47
46
// Main command
48
47
cmds := & cobra.Command {
49
48
Use : name ,
50
49
Short : "Tools for managing a cluster" ,
51
50
Long : fmt .Sprintf (adminLong ),
52
- Run : kcmdutil .DefaultSubCommandRun (out ),
51
+ Run : kcmdutil .DefaultSubCommandRun (streams . Out ),
53
52
}
54
53
55
- streams := genericclioptions.IOStreams {Out : out , ErrOut : errout }
56
-
57
54
groups := ktemplates.CommandGroups {
58
55
{
59
56
Message : "Component Installation:" ,
60
57
Commands : []* cobra.Command {
61
- router .NewCmdRouter (f , fullName , "router" , out , errout ),
62
- exipfailover .NewCmdIPFailoverConfig (f , fullName , "ipfailover" , out , errout ),
63
- registry .NewCmdRegistry (f , fullName , "registry" , out , errout ),
58
+ router .NewCmdRouter (f , fullName , "router" , streams . Out , streams . ErrOut ),
59
+ exipfailover .NewCmdIPFailoverConfig (f , fullName , "ipfailover" , streams ),
60
+ registry .NewCmdRegistry (f , fullName , "registry" , streams . Out , streams . ErrOut ),
64
61
},
65
62
},
66
63
{
67
64
Message : "Security and Policy:" ,
68
65
Commands : []* cobra.Command {
69
- project .NewCmdNewProject (project .NewProjectRecommendedName , fullName + " " + project .NewProjectRecommendedName , f , out ),
70
- policy .NewCmdPolicy (policy .PolicyRecommendedName , fullName + " " + policy .PolicyRecommendedName , f , out , errout ),
71
- groups .NewCmdGroups (groups .GroupsRecommendedName , fullName + " " + groups .GroupsRecommendedName , f , out , errout ),
72
- cert .NewCmdCert (cert .CertRecommendedName , fullName + " " + cert .CertRecommendedName , out , errout ),
66
+ project .NewCmdNewProject (project .NewProjectRecommendedName , fullName + " " + project .NewProjectRecommendedName , f , streams . Out ),
67
+ policy .NewCmdPolicy (policy .PolicyRecommendedName , fullName + " " + policy .PolicyRecommendedName , f , streams . Out , streams . ErrOut ),
68
+ groups .NewCmdGroups (groups .GroupsRecommendedName , fullName + " " + groups .GroupsRecommendedName , f , streams ),
69
+ cert .NewCmdCert (cert .CertRecommendedName , fullName + " " + cert .CertRecommendedName , streams . Out , streams . ErrOut ),
73
70
kubecmd .NewCmdCertificate (f , streams ),
74
71
},
75
72
},
76
73
{
77
74
Message : "Node Management:" ,
78
75
Commands : []* cobra.Command {
79
- admin .NewCommandNodeConfig (admin .NodeConfigCommandName , fullName + " " + admin .NodeConfigCommandName , out ),
80
- node .NewCommandManageNode (f , node .ManageNodeCommandName , fullName + " " + node .ManageNodeCommandName , out , errout ),
76
+ admin .NewCommandNodeConfig (admin .NodeConfigCommandName , fullName + " " + admin .NodeConfigCommandName , streams . Out ),
77
+ node .NewCommandManageNode (f , node .ManageNodeCommandName , fullName + " " + node .ManageNodeCommandName , streams . Out , streams . ErrOut ),
81
78
cmdutil .ReplaceCommandName ("kubectl" , fullName , ktemplates .Normalize (kubecmd .NewCmdCordon (f , streams ))),
82
79
cmdutil .ReplaceCommandName ("kubectl" , fullName , ktemplates .Normalize (kubecmd .NewCmdUncordon (f , streams ))),
83
80
cmdutil .ReplaceCommandName ("kubectl" , fullName , kubecmd .NewCmdDrain (f , streams )),
84
81
cmdutil .ReplaceCommandName ("kubectl" , fullName , ktemplates .Normalize (kubecmd .NewCmdTaint (f , streams ))),
85
- network .NewCmdPodNetwork (network .PodNetworkCommandName , fullName + " " + network .PodNetworkCommandName , f , out , errout ),
82
+ network .NewCmdPodNetwork (network .PodNetworkCommandName , fullName + " " + network .PodNetworkCommandName , f , streams . Out , streams . ErrOut ),
86
83
},
87
84
},
88
85
{
89
86
Message : "Maintenance:" ,
90
87
Commands : []* cobra.Command {
91
- diagnostics .NewCmdDiagnostics (diagnostics .DiagnosticsRecommendedName , fullName + " " + diagnostics .DiagnosticsRecommendedName , f , out ),
92
- prune .NewCommandPrune (prune .PruneRecommendedName , fullName + " " + prune .PruneRecommendedName , f , out , errout ),
93
- buildchain .NewCmdBuildChain (name , fullName + " " + buildchain .BuildChainRecommendedCommandName , f , out ),
88
+ diagnostics .NewCmdDiagnostics (diagnostics .DiagnosticsRecommendedName , fullName + " " + diagnostics .DiagnosticsRecommendedName , f , streams ),
89
+ prune .NewCommandPrune (prune .PruneRecommendedName , fullName + " " + prune .PruneRecommendedName , f , streams ),
90
+ buildchain .NewCmdBuildChain (name , fullName + " " + buildchain .BuildChainRecommendedCommandName , f , streams ),
94
91
migrate .NewCommandMigrate (
95
- migrate .MigrateRecommendedName , fullName + " " + migrate .MigrateRecommendedName , f , out , errout ,
92
+ migrate .MigrateRecommendedName , fullName + " " + migrate .MigrateRecommendedName , f , streams . Out , streams . ErrOut ,
96
93
// Migration commands
97
- migrateimages .NewCmdMigrateImageReferences ("image-references" , fullName + " " + migrate .MigrateRecommendedName + " image-references" , f , in , out , errout ),
98
- migratestorage .NewCmdMigrateAPIStorage ("storage" , fullName + " " + migrate .MigrateRecommendedName + " storage" , f , in , out , errout ),
99
- migrateetcd .NewCmdMigrateTTLs ("etcd-ttl" , fullName + " " + migrate .MigrateRecommendedName + " etcd-ttl" , f , in , out , errout ),
100
- migratehpa .NewCmdMigrateLegacyHPA ("legacy-hpa" , fullName + " " + migrate .MigrateRecommendedName + " legacy-hpa" , f , in , out , errout ),
101
- migratetemplateinstances .NewCmdMigrateTemplateInstances ("template-instances" , fullName + " " + migrate .MigrateRecommendedName + " template-instances" , f , in , out , errout ),
94
+ migrateimages .NewCmdMigrateImageReferences ("image-references" , fullName + " " + migrate .MigrateRecommendedName + " image-references" , f , streams . In , streams . Out , streams . ErrOut ),
95
+ migratestorage .NewCmdMigrateAPIStorage ("storage" , fullName + " " + migrate .MigrateRecommendedName + " storage" , f , streams . In , streams . Out , streams . ErrOut ),
96
+ migrateetcd .NewCmdMigrateTTLs ("etcd-ttl" , fullName + " " + migrate .MigrateRecommendedName + " etcd-ttl" , f , streams . In , streams . Out , streams . ErrOut ),
97
+ migratehpa .NewCmdMigrateLegacyHPA ("legacy-hpa" , fullName + " " + migrate .MigrateRecommendedName + " legacy-hpa" , f , streams . In , streams . Out , streams . ErrOut ),
98
+ migratetemplateinstances .NewCmdMigrateTemplateInstances ("template-instances" , fullName + " " + migrate .MigrateRecommendedName + " template-instances" , f , streams . In , streams . Out , streams . ErrOut ),
102
99
),
103
- top .NewCommandTop (top .TopRecommendedName , fullName + " " + top .TopRecommendedName , f , out , errout ),
104
- image .NewCmdVerifyImageSignature (name , fullName + " " + image .VerifyRecommendedName , f , out , errout ),
100
+ top .NewCommandTop (top .TopRecommendedName , fullName + " " + top .TopRecommendedName , f , streams . Out , streams . ErrOut ),
101
+ image .NewCmdVerifyImageSignature (name , fullName + " " + image .VerifyRecommendedName , f , streams . Out , streams . ErrOut ),
105
102
},
106
103
},
107
104
{
108
105
Message : "Configuration:" ,
109
106
Commands : []* cobra.Command {
110
- admin .NewCommandCreateKubeConfig (admin .CreateKubeConfigCommandName , fullName + " " + admin .CreateKubeConfigCommandName , out ),
111
- admin .NewCommandCreateClient (admin .CreateClientCommandName , fullName + " " + admin .CreateClientCommandName , out ),
107
+ admin .NewCommandCreateKubeConfig (admin .CreateKubeConfigCommandName , fullName + " " + admin .CreateKubeConfigCommandName , streams . Out ),
108
+ admin .NewCommandCreateClient (admin .CreateClientCommandName , fullName + " " + admin .CreateClientCommandName , streams . Out ),
112
109
113
- NewCommandCreateBootstrapProjectTemplate (f , CreateBootstrapProjectTemplateCommand , fullName + " " + CreateBootstrapProjectTemplateCommand , out ),
114
- admin .NewCommandCreateBootstrapPolicyFile (admin .CreateBootstrapPolicyFileCommand , fullName + " " + admin .CreateBootstrapPolicyFileCommand , out ),
110
+ NewCommandCreateBootstrapProjectTemplate (f , CreateBootstrapProjectTemplateCommand , fullName + " " + CreateBootstrapProjectTemplateCommand , streams . Out ),
111
+ admin .NewCommandCreateBootstrapPolicyFile (admin .CreateBootstrapPolicyFileCommand , fullName + " " + admin .CreateBootstrapPolicyFileCommand , streams . Out ),
115
112
116
- NewCommandCreateLoginTemplate (f , CreateLoginTemplateCommand , fullName + " " + CreateLoginTemplateCommand , out ),
117
- NewCommandCreateProviderSelectionTemplate (f , CreateProviderSelectionTemplateCommand , fullName + " " + CreateProviderSelectionTemplateCommand , out ),
118
- NewCommandCreateErrorTemplate (f , CreateErrorTemplateCommand , fullName + " " + CreateErrorTemplateCommand , out ),
113
+ NewCommandCreateLoginTemplate (f , CreateLoginTemplateCommand , fullName + " " + CreateLoginTemplateCommand , streams . Out ),
114
+ NewCommandCreateProviderSelectionTemplate (f , CreateProviderSelectionTemplateCommand , fullName + " " + CreateProviderSelectionTemplateCommand , streams . Out ),
115
+ NewCommandCreateErrorTemplate (f , CreateErrorTemplateCommand , fullName + " " + CreateErrorTemplateCommand , streams . Out ),
119
116
},
120
117
},
121
118
}
@@ -125,10 +122,10 @@ func NewCommandAdmin(name, fullName string, f kcmdutil.Factory, in io.Reader, ou
125
122
126
123
// Deprecated commands that are bundled with the binary but not displayed to end users directly
127
124
deprecatedCommands := []* cobra.Command {
128
- admin .NewCommandCreateMasterCerts (admin .CreateMasterCertsCommandName , fullName + " " + admin .CreateMasterCertsCommandName , out ),
129
- admin .NewCommandCreateKeyPair (admin .CreateKeyPairCommandName , fullName + " " + admin .CreateKeyPairCommandName , out ),
130
- admin .NewCommandCreateServerCert (admin .CreateServerCertCommandName , fullName + " " + admin .CreateServerCertCommandName , out ),
131
- admin .NewCommandCreateSignerCert (admin .CreateSignerCertCommandName , fullName + " " + admin .CreateSignerCertCommandName , out ),
125
+ admin .NewCommandCreateMasterCerts (admin .CreateMasterCertsCommandName , fullName + " " + admin .CreateMasterCertsCommandName , streams . Out ),
126
+ admin .NewCommandCreateKeyPair (admin .CreateKeyPairCommandName , fullName + " " + admin .CreateKeyPairCommandName , streams . Out ),
127
+ admin .NewCommandCreateServerCert (admin .CreateServerCertCommandName , fullName + " " + admin .CreateServerCertCommandName , streams . Out ),
128
+ admin .NewCommandCreateSignerCert (admin .CreateSignerCertCommandName , fullName + " " + admin .CreateSignerCertCommandName , streams . Out ),
132
129
}
133
130
for _ , cmd := range deprecatedCommands {
134
131
// Unsetting Short description will not show this command in help
@@ -139,15 +136,15 @@ func NewCommandAdmin(name, fullName string, f kcmdutil.Factory, in io.Reader, ou
139
136
140
137
cmds .AddCommand (
141
138
// part of every root command
142
- cmd .NewCmdConfig (fullName , "config" , f , out , errout ),
143
- cmd .NewCmdCompletion (fullName , out ),
139
+ cmd .NewCmdConfig (fullName , "config" , f , streams ),
140
+ cmd .NewCmdCompletion (fullName , streams ),
144
141
145
142
// hidden
146
- cmd .NewCmdOptions (out ),
143
+ cmd .NewCmdOptions (streams ),
147
144
)
148
145
149
146
if name == fullName {
150
- cmds .AddCommand (cmd .NewCmdVersion (fullName , f , out , cmd.VersionOptions {}))
147
+ cmds .AddCommand (cmd .NewCmdVersion (fullName , f , streams , cmd.VersionOptions {}))
151
148
}
152
149
153
150
return cmds
0 commit comments