-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathoutput.txt
More file actions
40 lines (33 loc) · 1.18 KB
/
output.txt
File metadata and controls
40 lines (33 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
=== Deploy catalog with isolation_mode and enable_predictive_optimization
>>> [CLI] bundle deploy
Uploading bundle files to /Workspace/Users/[USERNAME]/.bundle/[UNIQUE_NAME]/files...
Deploying resources...
Updating deployment state...
Deployment complete!
=== Assert update-only fields were applied
>>> [CLI] catalogs get test_catalog_[UNIQUE_NAME]
{
"name": "test_catalog_[UNIQUE_NAME]",
"comment": "Catalog with isolation mode",
"isolation_mode": "ISOLATED",
"enable_predictive_optimization": "ENABLE"
}
=== Update isolation_mode to OPEN
=== Redeploy with updated isolation_mode
>>> [CLI] bundle deploy
Uploading bundle files to /Workspace/Users/[USERNAME]/.bundle/[UNIQUE_NAME]/files...
Deploying resources...
Updating deployment state...
Deployment complete!
=== Assert isolation_mode is updated
>>> [CLI] catalogs get test_catalog_[UNIQUE_NAME]
{
"name": "test_catalog_[UNIQUE_NAME]",
"isolation_mode": "OPEN"
}
>>> [CLI] bundle destroy --auto-approve
The following resources will be deleted:
delete resources.catalogs.test_catalog
All files and directories at the following location will be deleted: /Workspace/Users/[USERNAME]/.bundle/[UNIQUE_NAME]
Deleting files...
Destroy complete!