github.com/databricks/cli@v0.203.0/bundle/tests/job_and_pipeline/databricks.yml (about)

     1  resources:
     2    pipelines:
     3      nyc_taxi_pipeline:
     4        name: "nyc taxi loader"
     5        libraries:
     6          - notebook:
     7              path: ./dlt/nyc_taxi_loader
     8  
     9  environments:
    10    development:
    11      mode: development
    12      resources:
    13        pipelines:
    14          nyc_taxi_pipeline:
    15            target: nyc_taxi_development
    16            development: true
    17  
    18    staging:
    19      resources:
    20        pipelines:
    21          nyc_taxi_pipeline:
    22            target: nyc_taxi_staging
    23            development: false
    24  
    25    production:
    26      mode: production
    27      resources:
    28        pipelines:
    29          nyc_taxi_pipeline:
    30            target: nyc_taxi_production
    31            development: false
    32            photon: true
    33  
    34        jobs:
    35          pipeline_schedule:
    36            name: Daily refresh of production pipeline
    37  
    38            schedule:
    39              quartz_cron_expression: 6 6 11 * * ?
    40              timezone_id: UTC
    41  
    42            tasks:
    43              - pipeline_task:
    44                  pipeline_id: "to be interpolated"