mirror of https://github.com/databricks/cli.git
add 'serverless: true' to pipeline
This commit is contained in:
parent
5d29d84441
commit
71b6394ccd
|
@ -37,3 +37,11 @@
|
||||||
+ autoscale:
|
+ autoscale:
|
||||||
+ min_workers: 1
|
+ min_workers: 1
|
||||||
+ max_workers: 4
|
+ max_workers: 4
|
||||||
|
--- [TESTROOT]/bundle/templates/default-python/classic/../serverless/output/my_default_python/resources/my_default_python.pipeline.yml
|
||||||
|
+++ output/my_default_python/resources/my_default_python.pipeline.yml
|
||||||
|
@@ -6,5 +6,4 @@
|
||||||
|
catalog: main
|
||||||
|
target: my_default_python_${bundle.target}
|
||||||
|
- serverless: true
|
||||||
|
libraries:
|
||||||
|
- notebook:
|
||||||
|
|
|
@ -5,6 +5,7 @@ resources:
|
||||||
name: my_default_python_pipeline
|
name: my_default_python_pipeline
|
||||||
catalog: main
|
catalog: main
|
||||||
target: my_default_python_${bundle.target}
|
target: my_default_python_${bundle.target}
|
||||||
|
serverless: true
|
||||||
libraries:
|
libraries:
|
||||||
- notebook:
|
- notebook:
|
||||||
path: ../src/dlt_pipeline.ipynb
|
path: ../src/dlt_pipeline.ipynb
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
{{$with_serverless := (eq .serverless "yes") -}}
|
||||||
|
{{if (eq .serverless "auto") -}}
|
||||||
|
{{$with_serverless = is_serverless_supported -}}
|
||||||
|
{{end -}}
|
||||||
# The main pipeline for {{.project_name}}
|
# The main pipeline for {{.project_name}}
|
||||||
resources:
|
resources:
|
||||||
pipelines:
|
pipelines:
|
||||||
|
@ -10,6 +14,9 @@ resources:
|
||||||
catalog: {{default_catalog}}
|
catalog: {{default_catalog}}
|
||||||
{{- end}}
|
{{- end}}
|
||||||
target: {{.project_name}}_${bundle.target}
|
target: {{.project_name}}_${bundle.target}
|
||||||
|
{{- if $with_serverless }}
|
||||||
|
serverless: true
|
||||||
|
{{- end}}
|
||||||
libraries:
|
libraries:
|
||||||
- notebook:
|
- notebook:
|
||||||
path: ../src/dlt_pipeline.ipynb
|
path: ../src/dlt_pipeline.ipynb
|
||||||
|
|
Loading…
Reference in New Issue