@@ -17,6 +17,7 @@ limitations under the License.
17
17
package join
18
18
19
19
import (
20
+ "errors"
20
21
"fmt"
21
22
"strings"
22
23
@@ -135,10 +136,10 @@ func (j *CommandJoinOption) Complete(args []string) error {
135
136
// Validate checks option and return a slice of found errs.
136
137
func (j * CommandJoinOption ) Validate (args []string ) error {
137
138
if len (args ) > 1 {
138
- return fmt . Errorf ("only the cluster name is allowed as an argument" )
139
+ return errors . New ("only the cluster name is allowed as an argument" )
139
140
}
140
141
if len (j .ClusterName ) == 0 {
141
- return fmt . Errorf ("cluster name is required" )
142
+ return errors . New ("cluster name is required" )
142
143
}
143
144
if errMsgs := validation .ValidateClusterName (j .ClusterName ); len (errMsgs ) != 0 {
144
145
return fmt .Errorf ("invalid cluster name(%s): %s" , j .ClusterName , strings .Join (errMsgs , ";" ))
@@ -196,11 +197,21 @@ func (j *CommandJoinOption) Run(f cmdutil.Factory) error {
196
197
return j .RunJoinCluster (controlPlaneRestConfig , clusterConfig )
197
198
}
198
199
200
+ var controlPlaneKubeClientBuilder = func (controlPlaneRestConfig * rest.Config ) kubeclient.Interface {
201
+ return kubeclient .NewForConfigOrDie (controlPlaneRestConfig )
202
+ }
203
+ var karmadaClientBuilder = func (controlPlaneRestConfig * rest.Config ) karmadaclientset.Interface {
204
+ return karmadaclientset .NewForConfigOrDie (controlPlaneRestConfig )
205
+ }
206
+ var clusterKubeClientBuilder = func (clusterConfig * rest.Config ) kubeclient.Interface {
207
+ return kubeclient .NewForConfigOrDie (clusterConfig )
208
+ }
209
+
199
210
// RunJoinCluster join the cluster into karmada.
200
211
func (j * CommandJoinOption ) RunJoinCluster (controlPlaneRestConfig , clusterConfig * rest.Config ) (err error ) {
201
- controlPlaneKubeClient := kubeclient . NewForConfigOrDie (controlPlaneRestConfig )
202
- karmadaClient := karmadaclientset . NewForConfigOrDie (controlPlaneRestConfig )
203
- clusterKubeClient := kubeclient . NewForConfigOrDie (clusterConfig )
212
+ controlPlaneKubeClient := controlPlaneKubeClientBuilder (controlPlaneRestConfig )
213
+ karmadaClient := karmadaClientBuilder (controlPlaneRestConfig )
214
+ clusterKubeClient := clusterKubeClientBuilder (clusterConfig )
204
215
205
216
klog .V (1 ).Infof ("Joining cluster config. endpoint: %s" , clusterConfig .Host )
206
217
@@ -288,7 +299,7 @@ func generateClusterInControllerPlane(opts util.ClusterRegisterOption) (*cluster
288
299
clusterObj .Spec .ProxyURL = url .String ()
289
300
}
290
301
291
- controlPlaneKarmadaClient := karmadaclientset . NewForConfigOrDie (opts .ControlPlaneConfig )
302
+ controlPlaneKarmadaClient := karmadaClientBuilder (opts .ControlPlaneConfig )
292
303
cluster , err := util .CreateClusterObject (controlPlaneKarmadaClient , clusterObj )
293
304
if err != nil {
294
305
return nil , fmt .Errorf ("failed to create cluster(%s) object. error: %v" , opts .ClusterName , err )
0 commit comments