Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 15 additions & 10 deletions databricks_template_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@
"input_cloud": {
"order": 3,
"type": "string",
"description": "\nSelect cloud. \nChoose from azure, aws",
"default": "azure"
"description": "\nSelect cloud",
"default": "azure",
"enum": ["azure", "aws"]
},
"input_cicd_platform": {
"order": 4,
"type": "string",
"description": "\nSelect CICD platform. \nChoose from github_actions, github_actions_for_github_enterprise_servers, azure_devops",
"default": "github_actions"
"description": "\nSelect CICD platform",
"default": "github_actions",
"enum": ["github_actions", "github_actions_for_github_enterprise_servers", "azure_devops"]
},
"input_databricks_staging_workspace_host": {
"order": 5,
Expand Down Expand Up @@ -57,8 +59,9 @@
"input_include_models_in_unity_catalog": {
"order": 10,
"type": "string",
"description": "\nWhether to use the Model Registry with Unity Catalog. \nChoose from no, yes",
"default": "yes"
"description": "\nWhether to use the Model Registry with Unity Catalog",
"default": "yes",
"enum": ["yes", "no"]
},
"input_schema_name": {
"order": 11,
Expand All @@ -75,14 +78,16 @@
"input_include_feature_store": {
"order": 13,
"type": "string",
"description": "\nWhether to include Feature Store. \nChoose from no, yes",
"default": "no"
"description": "\nWhether to include Feature Store",
"default": "no",
"enum": ["no", "yes"]
},
"input_include_mlflow_recipes": {
"order": 14,
"type": "string",
"description": "\nWhether to include MLflow Recipes. \nChoose from no, yes",
"default": "no"
"description": "\nWhether to include MLflow Recipes",
"default": "no",
"enum": ["no", "yes"]
}
},
"success_message" : "\n✨ Your MLOps Stack has been created in the '{{.input_project_name}}' directory!\n\nPlease refer to the README.md of your project for further instructions on getting started."
Expand Down