-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added support for Databricks Apps in DABs #1928
base: main
Are you sure you want to change the base?
Conversation
@@ -0,0 +1,102 @@ | |||
// Generated from Databricks Terraform provider schema. DO NOT EDIT. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All of the TF changes regenerated based on local TF override with this branch databricks/terraform-provider-databricks#4099
Will be updated when the change is released in TF provider and provider updated in CLI
bc4c9ac
to
d72b03e
Compare
Test Details: go/deco-tests/12276608279 |
If integration tests don't run automatically, an authorized user can run them manually by following the instructions below: Trigger: Inputs:
Checks will be approved automatically on success. |
Changes
Now it's possible to configure new
app
resource in bundle and point it to the customsource_code_path
location where Databricks App code is defined.On
databricks bundle deploy
DABs will create an app. All consecutivedatabricks bundle deploy
execution will update an existing app if there are any updatedOn
databricks bundle run <my_app>
DABs will execute app deployment. If the app is not started yet, it will start the app first.Bundle configuration
Execution
databricks bundle deploy -t dev
databricks bundle run my_app -t dev
If app is started
If app is not started
Tests
Added unit and config tests + manual test.