By using the feature-branch.properties
capability of CDAF, branches containing the string dev
will deploy to the development environment. This feature allows imperative deployment by the development team, without manipulating the pipeline, and therefore avoiding drift.
vue
# Feature Branch name match mapping to environment
dev=DEV
API
# Feature Branch name "contains" mapping to environment
dev=DEV release 'apply --auto-approve'
In the feature branch, where dev
is in the branch name, CDAF will detect and execute a deployment, using the mapping above to invoke a release to DEV
.
The trunk based pipeline will only push a release artefact from the main branch, with a stand-up/tear-down integration test of the production build.
Next, publication…