Getting Started¶
Installation¶
To install fabric-cicd, run:
Authentication¶
- You can optionally provide your own credential object that aligns with the
TokenCredential
class. For more details, see the TokenCredential documentation. -
If you do not provide a
token_credential
parameter, the library will use the Azure SDK'sDefaultAzureCredential
for authentication.- Refer to the Azure SDK documentation for the order in which credential types are attempted.
-
For local development with a User Principal Name (UPN), install either the Azure CLI or the Az.Accounts PowerShell module.
-
Note: When no credential is provided, the
DefaultAzureCredential
may select an unexpected identity. For example, if you log in to the Azure CLI with a Service Principal Name (SPN) but log in to Az.Accounts with a UPN, theDefaultAzureCredential
will prioritize the CLI authentication.
Directory Structure¶
This library deploys from a directory containing files and directories committed via the Fabric Source Control UI. Ensure the repository_directory
includes only these committed items, with the exception of the parameter.yml
file.
/<your-directory>
/<item-name>.<item-type>
...
/<item-name>.<item-type>
...
/<workspace-subfolder>
/<item-name>.<item-type>
...
/<item-name>.<item-type>
...
/parameter.yml
GIT Flow¶
The flow pictured below is the hero scenario for this library and is the recommendation if you're just starting out.
Deployed
branches are not connected to workspaces via GIT SyncFeature
branches are connected to workspaces via GIT SyncDeployed
workspaces are only updated through script-based deployments, such as through the fabric-cicd libraryFeature
branches are created from the default branch, merged back into the defaultDeployed
branch, and cherry picked into the upperDeployed
branches- Each deployment is a full deployment and does not consider commit diffs