Don't support databricks bundle run --deploy for now

This commit is contained in:
Lennart Kats 2023-07-03 17:58:39 +02:00
parent 34a1698d24
commit ddcd6131ca
1 changed files with 0 additions and 15 deletions

View File

@ -14,7 +14,6 @@ import (
)
var runOptions run.Options
var deployFlag bool
var noWait bool
var runCmd = &cobra.Command{
@ -26,17 +25,6 @@ var runCmd = &cobra.Command{
RunE: func(cmd *cobra.Command, args []string) error {
b := bundle.Get(cmd.Context())
if deployFlag {
err := deploy(cmd, b)
if err != nil {
return err
}
} else if computeID != "" {
// Running notebooks is not yet implemented, otherwise we could
// use --compute with a notebook
return fmt.Errorf("not supported: --compute specified without --deploy")
}
err := bundle.Apply(cmd.Context(), b, bundle.Seq(
phases.Initialize(),
terraform.Interpolate(),
@ -104,8 +92,5 @@ var runCmd = &cobra.Command{
func init() {
runOptions.Define(runCmd.Flags())
rootCmd.AddCommand(runCmd)
runCmd.Flags().BoolVar(&deployFlag, "deploy", false, "Call deploy before run.")
runCmd.Flags().BoolVar(&forceDeploy, "force", false, "Force acquisition of deployment lock.")
runCmd.Flags().BoolVar(&noWait, "no-wait", false, "Don't wait for the run to complete.")
runCmd.Flags().StringVar(&computeID, "compute", "", "Override compute in the deployment with the given compute ID.")
}