You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,8 +45,8 @@ Git repo (dev branch)
45
45
| Document | Description |
46
46
|---|---|
47
47
|[CI/CD Release Options](fabric-cicd-release-options.md)| Evaluates all CI/CD release options for Fabric (Deployment Pipelines, Git-based, Build-based, Hybrid) and recommends the Hybrid approach. **Start here** if you're deciding on a strategy. |
48
-
|[Hybrid CI/CD Implementation Guide](hybrid-cicd-implementation-guide.md)| Deep dive into the implementation: workflow structure, sandwich pattern, configuration strategy, prerequisites, setup steps, and gotchas. |
49
-
|[Development Process](development-process.md)| How developers work day-to-day: branch-out workflow, environment bootstrap/reset script, and PR validation. |
48
+
|[Hybrid CI/CD Implementation Guide](fabric-hybrid-cicd-guide.md)| Deep dive into the implementation: workflow structure, sandwich pattern, configuration strategy, prerequisites, setup steps, and gotchas. |
49
+
|[Development Process](fabric-development-process.md)| How developers work day-to-day: branch-out workflow, environment bootstrap/reset script, and PR validation. |
50
50
51
51
---
52
52
@@ -66,7 +66,7 @@ Not all Fabric items can be managed the same way. From a lifecycle management pe
66
66
67
67
> **Important:** Both supported items lists evolve as Microsoft adds capabilities. Always verify against the official documentation before assuming an item falls into a particular category.
68
68
69
-
This categorization directly impacts your CI/CD strategy. The [Hybrid CI/CD Implementation Guide](hybrid-cicd-implementation-guide.md) uses the "sandwich pattern" specifically to handle the gap between git-tracked and deployment-pipeline-only items.
69
+
This categorization directly impacts your CI/CD strategy. The [Hybrid CI/CD Implementation Guide](fabric-hybrid-cicd-guide.md) uses the "sandwich pattern" specifically to handle the gap between git-tracked and deployment-pipeline-only items.
70
70
71
71
### Variable Libraries: Dynamic vs Static Metadata
72
72
@@ -77,7 +77,7 @@ Some Fabric items resolve environment-specific values **at runtime** through [Va
77
77
|**Dynamic (Variable Library)**| The item reads IDs from the Variable Library at runtime. Changing the active value set automatically switches the environment context — no file changes needed. | Notebooks using `notebookutils.variableLibrary.getLibrary()`|
78
78
|**Static (hardcoded)**| The item definition contains literal workspace/lakehouse GUIDs that must be rewritten per environment — either at deploy time (via `parameter.yml`) or via script (`branch_env.py`). | Semantic Model Direct Lake URL (`expressions.tmdl`), Notebook META dependency blocks (`default_lakehouse`, `default_lakehouse_workspace_id`) |
79
79
80
-
When designing your development and CI/CD processes, identify which items in your workspace are dynamic vs static. Static items need either deploy-time parameterization (`parameter.yml` for CI/CD) or script-based rewriting (`branch_env.py` for feature branches). The [Development Process](development-process.md) doc covers how this repo handles both.
80
+
When designing your development and CI/CD processes, identify which items in your workspace are dynamic vs static. Static items need either deploy-time parameterization (`parameter.yml` for CI/CD) or script-based rewriting (`branch_env.py` for feature branches). The [Development Process](fabric-development-process.md) doc covers how this repo handles both.
81
81
82
82
---
83
83
@@ -99,7 +99,7 @@ When designing your development and CI/CD processes, identify which items in you
99
99
4. Create `dev`, `test`, and `main` branches
100
100
5. Develop on `dev`, merge to `test` (triggers Test deploy), merge to `main` (triggers Prod deploy)
101
101
102
-
For detailed setup instructions, see the [Implementation Guide](hybrid-cicd-implementation-guide.md#prerequisites--setup).
102
+
For detailed setup instructions, see the [Implementation Guide](fabric-hybrid-cicd-guide.md#prerequisites--setup).
0 commit comments