-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabricks.yml
More file actions
35 lines (31 loc) · 1.17 KB
/
Copy pathdatabricks.yml
File metadata and controls
35 lines (31 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Databricks Asset Bundle definition for App Automator.
#
# This bundle deploys ONE serverless job that turns your Databricks Apps
# on and off on a schedule you define in config/apps.yml.
#
# Deploy with: databricks bundle deploy -t dev -p <your-profile>
# Docs: see README.md
bundle:
name: app-automator
# Files synced to the workspace alongside the job (config + source code).
include:
- resources/*.yml
variables:
# How often the reconcile job wakes up to check the schedule (Quartz cron).
# Default: every 15 minutes. Coarser = cheaper. See README to change.
reconcile_cron:
description: Quartz cron expression for the reconcile schedule.
default: "0 0/15 * * * ?"
# Set to "true" to make the job only LOG what it would do (no start/stop).
dry_run:
description: When "true", the job logs actions without performing them.
default: "false"
targets:
# Default target. The workspace host comes from the CLI profile you pass
# with -p, so anyone can deploy this to their own workspace unchanged.
dev:
mode: development
default: true
# An optional production target (same behavior, no "dev" name prefixing).
prod:
mode: production