mirror of https://github.com/databricks/cli.git
Add `uuid` to builtin templates (#2088)
## Changes This is useful to track telemetry associated with the templates and can later be useful for functional usecases as well. Mlops stacks does the same here: https://github.com/databricks/mlops-stacks/pull/185 ## Tests Existing tests.
This commit is contained in:
parent
a0455bcaef
commit
b0c1c23630
|
@ -15,7 +15,8 @@
|
||||||
"lock": {
|
"lock": {
|
||||||
"enabled": false
|
"enabled": false
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"uuid": "<UUID>"
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"resources/project_name_$UNIQUE_PRJ.job.yml",
|
"resources/project_name_$UNIQUE_PRJ.job.yml",
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
# See https://docs.databricks.com/dev-tools/bundles/index.html for documentation.
|
# See https://docs.databricks.com/dev-tools/bundles/index.html for documentation.
|
||||||
bundle:
|
bundle:
|
||||||
name: {{.project_name}}
|
name: {{.project_name}}
|
||||||
|
uuid: {{bundle_uuid}}
|
||||||
|
|
||||||
include:
|
include:
|
||||||
- resources/*.yml
|
- resources/*.yml
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
# See https://docs.databricks.com/dev-tools/bundles/index.html for documentation.
|
# See https://docs.databricks.com/dev-tools/bundles/index.html for documentation.
|
||||||
bundle:
|
bundle:
|
||||||
name: {{.project_name}}
|
name: {{.project_name}}
|
||||||
|
uuid: {{bundle_uuid}}
|
||||||
|
|
||||||
include:
|
include:
|
||||||
- resources/*.yml
|
- resources/*.yml
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
# See https://docs.databricks.com/dev-tools/bundles/index.html for documentation.
|
# See https://docs.databricks.com/dev-tools/bundles/index.html for documentation.
|
||||||
bundle:
|
bundle:
|
||||||
name: {{.project_name}}
|
name: {{.project_name}}
|
||||||
|
uuid: {{bundle_uuid}}
|
||||||
|
|
||||||
include:
|
include:
|
||||||
- resources/*.yml
|
- resources/*.yml
|
||||||
|
|
Loading…
Reference in New Issue