mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-04 10:41:46 +00:00
60 lines
2.2 KiB
Go
60 lines
2.2 KiB
Go
/*
|
|
Copyright 2021. The KubeVela 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 cli
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/oam-dev/kubevela/apis/types"
|
|
"github.com/oam-dev/kubevela/pkg/utils/common"
|
|
cmdutil "github.com/oam-dev/kubevela/pkg/utils/util"
|
|
"github.com/oam-dev/kubevela/references/cli"
|
|
)
|
|
|
|
// NewDryRunCommand creates `dry-run` command
|
|
func NewDryRunCommand(c common.Args, ioStreams cmdutil.IOStreams) *cobra.Command {
|
|
var namespace string
|
|
o := &cli.DryRunCmdOptions{IOStreams: ioStreams}
|
|
cmd := &cobra.Command{
|
|
Use: "dry-run",
|
|
DisableFlagsInUseLine: true,
|
|
Short: "Dry Run an application, and output the K8s resources as result to stdout",
|
|
Long: "Dry Run an application, and output the K8s resources as result to stdout, only CUE template supported for now",
|
|
Example: "kubectl vela dry-run",
|
|
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
|
|
return c.SetConfig()
|
|
},
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
buff, err := cli.DryRunApplication(o, c, namespace)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
o.Info(buff.String())
|
|
return nil
|
|
},
|
|
Annotations: map[string]string{
|
|
types.TagCommandType: types.TypePlugin,
|
|
},
|
|
}
|
|
|
|
cmd.Flags().StringVarP(&o.ApplicationFile, "file", "f", "./app.yaml", "application file name")
|
|
cmd.Flags().StringVarP(&o.DefinitionFile, "definition", "d", "", "specify a definition file or directory, it will only be used in dry-run rather than applied to K8s cluster")
|
|
cmd.Flags().StringVarP(&namespace, "namespace", "n", "default", "specify namespace of the definition file, by default is default namespace")
|
|
cmd.SetOut(ioStreams.Out)
|
|
return cmd
|
|
}
|