
All the cluster commands was refactored for usage with new config factory. Config object now is being initialized in pkg module on demand, which provides more flexibility and cleaner code. Change-Id: I1088ecbce0c34a146a646270404ff206b152d310 Signed-off-by: Ruslan Aliev <raliev@mirantis.com>
61 lines
1.9 KiB
Go
61 lines
1.9 KiB
Go
/*
|
|
Copyright 2014 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package cluster
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
clusterctlcmd "opendev.org/airship/airshipctl/pkg/clusterctl/cmd"
|
|
"opendev.org/airship/airshipctl/pkg/config"
|
|
)
|
|
|
|
const (
|
|
moveLong = `
|
|
Move Cluster API objects, provider specific objects and all dependencies to the target cluster.
|
|
|
|
Note: The destination cluster MUST have the required provider components installed.
|
|
`
|
|
|
|
moveExample = `
|
|
Move Cluster API objects, provider specific objects and all dependencies to the target cluster.
|
|
|
|
airshipctl cluster move --target-context <context name>
|
|
`
|
|
)
|
|
|
|
// NewMoveCommand creates a command to move capi and bmo resources to the target cluster
|
|
func NewMoveCommand(cfgFactory config.Factory) *cobra.Command {
|
|
var toKubeconfigContext string
|
|
moveCmd := &cobra.Command{
|
|
Use: "move",
|
|
Short: "Move Cluster API objects, provider specific objects and all dependencies to the target cluster",
|
|
Long: moveLong[1:],
|
|
Example: moveExample,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
command, err := clusterctlcmd.NewCommand(cfgFactory)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return command.Move(toKubeconfigContext)
|
|
},
|
|
}
|
|
|
|
moveCmd.Flags().StringVar(&toKubeconfigContext, "target-context", "",
|
|
"Context to be used within the kubeconfig file for the target cluster. If empty, current context will be used.")
|
|
return moveCmd
|
|
}
|