mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-23 17:53:04 +00:00
* Integrate Terraform into KubeVela Integrated Terrafrom into KubeVela to enable it to deploy infrastruce resouces by `vela up` * extend Terraform modules/files as WorkloadDefinition stop printing terraform log to console Support one workload consumes two cloud services Refactor Terraform plugin based on Application Object add testcase * refactor code per reviewer's comments fix rebase issue * find lost code back * refactor code to make the modification as little as to that of branch master * remove blank lines from imports
56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
package commands
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
|
|
"github.com/oam-dev/kubevela/apis/types"
|
|
cmdutil "github.com/oam-dev/kubevela/pkg/commands/util"
|
|
"github.com/oam-dev/kubevela/pkg/serverlib"
|
|
)
|
|
|
|
var (
|
|
appFilePath string
|
|
)
|
|
|
|
// NewUpCommand will create command for applying an AppFile
|
|
func NewUpCommand(c types.Args, ioStream cmdutil.IOStreams) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "up",
|
|
DisableFlagsInUseLine: true,
|
|
Short: "Apply an appfile",
|
|
Long: "Apply an appfile",
|
|
Annotations: map[string]string{
|
|
types.TagCommandType: types.TypeStart,
|
|
},
|
|
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
|
|
return c.SetConfig()
|
|
},
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
velaEnv, err := GetEnv(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
kubecli, err := client.New(c.Config, client.Options{Scheme: c.Schema})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
o := &serverlib.AppfileOptions{
|
|
Kubecli: kubecli,
|
|
IO: ioStream,
|
|
Env: velaEnv,
|
|
}
|
|
filePath, err := cmd.Flags().GetString(appFilePath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return o.Run(filePath, c.Config)
|
|
},
|
|
}
|
|
cmd.SetOut(ioStream.Out)
|
|
|
|
cmd.Flags().StringP(appFilePath, "f", "", "specify file path for appfile")
|
|
return cmd
|
|
}
|