package bundle import ( "github.com/databricks/cli/bundle" "github.com/databricks/cli/bundle/phases" "github.com/spf13/cobra" ) var deployCmd = &cobra.Command{ Use: "deploy", Short: "Deploy bundle", PreRunE: ConfigureBundleWithVariables, RunE: func(cmd *cobra.Command, args []string) error { b := bundle.Get(cmd.Context()) // If `--force` is specified, force acquisition of the deployment lock. b.Config.Bundle.Lock.Force = force return bundle.Apply(cmd.Context(), b, []bundle.Mutator{ phases.Initialize(), phases.Build(), phases.Deploy(), }) }, } var force bool func init() { AddCommand(deployCmd) deployCmd.Flags().BoolVar(&force, "force", false, "Force acquisition of deployment lock.") }