|
4 | 4 | "order": 1,
|
5 | 5 | "type": "string",
|
6 | 6 | "default": "my-mlops-project",
|
7 |
| - "description": "Project Name" |
| 7 | + "description": "Welcome to MLOps Stack. For detailed information on project generation, see the README at https://github.com/databricks/mlops-stack/blob/main/README.md. \n\nProject Name" |
8 | 8 | },
|
9 | 9 | "input_root_dir": {
|
10 | 10 | "order": 2,
|
11 | 11 | "type": "string",
|
12 | 12 | "default": "my-mlops-project",
|
13 |
| - "description": "Root directory name. Use a name different from the project name if you intend to use monorepo" |
| 13 | + "description": "\nRoot directory name. Use a name different from the project name if you intend to use monorepo" |
14 | 14 | },
|
15 | 15 | "input_cloud": {
|
16 | 16 | "order": 3,
|
17 | 17 | "type": "string",
|
18 |
| - "description": "Select cloud. \nChoose from azure, aws", |
| 18 | + "description": "\nSelect cloud. \nChoose from azure, aws", |
19 | 19 | "default": "azure"
|
20 | 20 | },
|
21 | 21 | "input_cicd_platform": {
|
22 | 22 | "order": 4,
|
23 | 23 | "type": "string",
|
24 |
| - "description": "Select CICD platform. \nChoose from github_actions, github_actions_for_github_enterprise_servers, azure_devops", |
| 24 | + "description": "\nSelect CICD platform. \nChoose from github_actions, github_actions_for_github_enterprise_servers, azure_devops", |
25 | 25 | "default": "github_actions"
|
26 | 26 | },
|
27 | 27 | "input_databricks_staging_workspace_host": {
|
28 | 28 | "order": 5,
|
29 | 29 | "type": "string",
|
30 | 30 | "default": "",
|
31 |
| - "description": "URL of staging Databricks workspace, used to run CI tests on PRs and preview config changes before they're deployed to production. Default: \nAzure - https://adb-xxxx.xx.azuredatabricks.net\nAWS - https://your-staging-workspace.cloud.databricks.com\n" |
| 31 | + "description": "\nURL of staging Databricks workspace, used to run CI tests on PRs and preview config changes before they're deployed to production. Default: \nAzure - https://adb-xxxx.xx.azuredatabricks.net\nAWS - https://your-staging-workspace.cloud.databricks.com\n" |
32 | 32 | },
|
33 | 33 | "input_databricks_prod_workspace_host": {
|
34 | 34 | "order": 6,
|
35 | 35 | "type": "string",
|
36 | 36 | "default": "",
|
37 |
| - "description": "URL of production Databricks workspace. Default: \nAzure - https://adb-xxxx.xx.azuredatabricks.net\nAWS - https://your-prod-workspace.cloud.databricks.com\n" |
| 37 | + "description": "\nURL of production Databricks workspace. Default: \nAzure - https://adb-xxxx.xx.azuredatabricks.net\nAWS - https://your-prod-workspace.cloud.databricks.com\n" |
38 | 38 | },
|
39 | 39 | "input_default_branch": {
|
40 | 40 | "order": 7,
|
41 | 41 | "type": "string",
|
42 | 42 | "default": "main",
|
43 |
| - "description": "Name of the default branch, where the prod and staging ML resources are deployed from and the latest ML code is staged. Default:" |
| 43 | + "description": "\nName of the default branch, where the prod and staging ML resources are deployed from and the latest ML code is staged. Default" |
44 | 44 | },
|
45 | 45 | "input_release_branch": {
|
46 | 46 | "order": 8,
|
47 | 47 | "type": "string",
|
48 | 48 | "default": "release",
|
49 |
| - "description": "Name of the release branch. The production jobs (model training, batch inference) defined in this stack pull ML code from this branch. Default:" |
| 49 | + "description": "\nName of the release branch. The production jobs (model training, batch inference) defined in this stack pull ML code from this branch. Default" |
50 | 50 | },
|
51 | 51 | "input_read_user_group": {
|
52 | 52 | "order": 9,
|
53 | 53 | "type": "string",
|
54 | 54 | "default": "users",
|
55 |
| - "description": "User group name to give READ permissions to for project resources (ML jobs, integration test job runs, and machine learning resources). A group with this name must exist in both the staging and prod workspaces. Default:" |
| 55 | + "description": "\nUser group name to give READ permissions to for project resources (ML jobs, integration test job runs, and machine learning resources). A group with this name must exist in both the staging and prod workspaces. Default" |
56 | 56 | },
|
57 |
| - "input_include_feature_store": { |
| 57 | + "input_include_models_in_unity_catalog": { |
58 | 58 | "order": 10,
|
59 | 59 | "type": "string",
|
60 |
| - "description": "Whether to include feature store. \nChoose from no, yes", |
| 60 | + "description": "\nWhether to use the Model Registry with Unity Catalog. \nChoose from no, yes", |
| 61 | + "default": "yes" |
| 62 | + }, |
| 63 | + "input_schema_name": { |
| 64 | + "order": 11, |
| 65 | + "type": "string", |
| 66 | + "description": "\nName of schema to use when registering a model in Unity Catalog. \nNote that this schema must already exist. Default", |
| 67 | + "default": "schema_name" |
| 68 | + }, |
| 69 | + "input_unity_catalog_read_user_group": { |
| 70 | + "order": 12, |
| 71 | + "type": "string", |
| 72 | + "default": "account users", |
| 73 | + "description": "\nUser group name to give EXECUTE privileges to models in Unity Catalog. A group with this name must exist in the Unity Catalog that the staging and prod workspaces can access. Default" |
| 74 | + }, |
| 75 | + "input_include_feature_store": { |
| 76 | + "order": 13, |
| 77 | + "type": "string", |
| 78 | + "description": "\nWhether to include Feature Store. \nChoose from no, yes", |
61 | 79 | "default": "no"
|
62 | 80 | },
|
63 | 81 | "input_include_mlflow_recipes": {
|
64 |
| - "order": 11, |
| 82 | + "order": 14, |
65 | 83 | "type": "string",
|
66 |
| - "description": "Whether to include mlflow recipes. \nChoose from no, yes", |
| 84 | + "description": "\nWhether to include MLflow Recipes. \nChoose from no, yes", |
67 | 85 | "default": "no"
|
68 | 86 | }
|
69 | 87 | }
|
|
0 commit comments