mirror of https://github.com/databricks/cli.git
adjust whitespace
This commit is contained in:
parent
71b6394ccd
commit
654832ea1f
|
@ -6,7 +6,7 @@
|
|||
+ job_cluster_key: job_cluster
|
||||
notebook_task:
|
||||
notebook_path: ../src/notebook.ipynb
|
||||
@@ -29,16 +30,19 @@
|
||||
@@ -29,17 +30,20 @@
|
||||
depends_on:
|
||||
- task_key: refresh_pipeline
|
||||
- environment_key: default
|
||||
|
@ -14,6 +14,12 @@
|
|||
python_wheel_task:
|
||||
package_name: my_default_python
|
||||
entry_point: main
|
||||
+ libraries:
|
||||
+ # By default we just include the .whl file generated for the my_default_python package.
|
||||
+ # See https://docs.databricks.com/dev-tools/bundles/library-dependencies.html
|
||||
+ # for more information on how to add other libraries.
|
||||
+ - whl: ../dist/*.whl
|
||||
|
||||
- # A list of task execution environment specifications that can be referenced by tasks of this job.
|
||||
- environments:
|
||||
- - environment_key: default
|
||||
|
@ -24,11 +30,6 @@
|
|||
- client: "1"
|
||||
- dependencies:
|
||||
- - ../dist/*.whl
|
||||
+ libraries:
|
||||
+ # By default we just include the .whl file generated for the my_default_python package.
|
||||
+ # See https://docs.databricks.com/dev-tools/bundles/library-dependencies.html
|
||||
+ # for more information on how to add other libraries.
|
||||
+ - whl: ../dist/*.whl
|
||||
+ job_clusters:
|
||||
+ - job_cluster_key: job_cluster
|
||||
+ new_cluster:
|
||||
|
|
|
@ -38,6 +38,7 @@ resources:
|
|||
# See https://docs.databricks.com/dev-tools/bundles/library-dependencies.html
|
||||
# for more information on how to add other libraries.
|
||||
- whl: ../dist/*.whl
|
||||
|
||||
job_clusters:
|
||||
- job_cluster_key: job_cluster
|
||||
new_cluster:
|
||||
|
|
|
@ -32,6 +32,7 @@ resources:
|
|||
python_wheel_task:
|
||||
package_name: my_default_python
|
||||
entry_point: main
|
||||
|
||||
# A list of task execution environment specifications that can be referenced by tasks of this job.
|
||||
environments:
|
||||
- environment_key: default
|
||||
|
|
|
@ -72,8 +72,8 @@ resources:
|
|||
- whl: ../dist/*.whl
|
||||
{{- end -}}
|
||||
{{else}}
|
||||
{{- end -}}
|
||||
{{- if $with_serverless}}
|
||||
{{- end}}
|
||||
{{if $with_serverless}}
|
||||
# A list of task execution environment specifications that can be referenced by tasks of this job.
|
||||
environments:
|
||||
- environment_key: default
|
||||
|
|
Loading…
Reference in New Issue