Quick start: Advanced Promotion Flow with environment dependencies
Promote product apps between environments with dependencies
Advanced Promotion Flow with environment dependencies quick start
By default, each environment in a Promotion Flow (except the Trigger Environment), is dependent on the one preceding it.
However, critical environments may rely on the success or stability of multiple environments before changes can be promoted to them. By defining additional dependencies, you ensure that changes are promoted only when all required environments meet the specified criteria.
This quick start shows how to create additional dependencies between environments in a Promotion Flow.
We’ll do the following:
-
Create a new environment
Add astaging
environment to the existing environments. -
Create a new application Create a new application
demo-trioapp-staging
aligned tostaging
. - Modify and save
multi-env-sequential-promotion
Promotion Flow- Add
staging
as a parallel environment toqa
. - Create a dependency for
prod
on bothqa
andstaging
- Add
-
Trigger the promotion
Manually trigger the Promotion Flow from within the Flow Builder to orchestrate the promotion. - Monitor release
Track the progress of the promotion in the Releases tab for thedemo-trioapp
product.
Requirements
- GitOps Runtime
- Git Source to store application manifests
- Products and applications
- Each environment must have an application for the product. For example,
demo-trioapp-dev
,demo-trioapp-qa
, anddemo-trioapp-prod
representing the development, testing, and production versions. - The repository structure must be consistent across all applications.
If it works for you, copy the corresponding subfolders in demo-applications with the resources.
- Each environment must have an application for the product. For example,
- Environments
A Promotion Flow requires at least three environments. In this quick start, we usedev
,qa
, andprod
.
Example Git repository
You can copy the manifests and the resources for the new application from the example GitHub repository.
- Application manifest
- Application resources
Add a dependency to Promotion Flow
Update the dependency on the prod
environment, by selecting staging
in addition to qa
.
Before you begin
- Make sure you have:
- A new environment for the additional dependency,
staging
in our example. - Application in the new environment
demo-trioapp-staging
for the quick start.
- A new environment for the additional dependency,
Step-by-step
- From the list of Promotion Flows, open the Promotion Flow you created, for example,
multi-env-sequential-promotion
. - If required, change the Version to 3.00.
- Mouse over the right of the environment node before the final environment in the flow, and add the new environment you created as a parallel environment.
In the example,staging
is the parallel environment toqa
. - Mouse over the final environment node in the Promotion Flow for which to add the dependency,
prod
for the quick start, and click Depends on. - Select the new environment you added,
staging
for the quick start, and then click Update dependency.
Here’s the multi-env-sequential-promotion
Promotion Flow with the updated dependency.
Here’s the YAML view of the same Promotion Flow with the updated dependency.
- Continue with Trigger and view product release with dependencies.
Trigger and view product release with dependencies
Trigger the Promotion Flow with dependencies and and verify that changes are promoted to the final environment only after all dependent environments are successfully promoted.
- Open the Promotion Flow with environment dependencies,
multi-env-sequential-promotion
for the quick start, and click Trigger. - Select the product, the application to promote, and then click Trigger once again.
- Click View Release Details.
The Release view highlights the dependencies within the Promotion Flow, indicating that promotion to the final environment depends on the successful promotion of one or more environments.
In the following example, prod
is dependent on both qa
and staging
. qa
has been promoted, but staging
is still pending, preventing prod
from starting promotion.
YAML of Promotion Flow with dependencies
Here’s the YAML of the multi-env-sequential-promotion
Promotion Flow, updated with dependencies.
The YAML is saved in the Shared Configuration Repository of the GitOps Runtime selected as the Configuration Runtime.
The path in the Shared Configuration Repo is <gitops-runtime>/<shared-configuration-repo>/resources/configurations/promotion-flows
.
apiVersion: codefresh.io/v1beta1
kind: PromotionFlow
metadata:
name: multi-env-sequential-promotion
annotations:
description: Sequential promotion flow with environment dependencies
version: "3.0"
spec:
triggerEnvironment: dev
steps:
- environment: qa
dependsOn:
- dev
policy:
action: commit
preAction: pre-action
postAction: post-action
- environment: prod
dependsOn:
- qa
- staging
policy:
action: commit
preAction: pre-action
postAction: post-action
- environment: staging
dependsOn:
- dev
policy:
action: commit
promotionTimeoutLimit: 5
By now, you’ve successfully created environments, created a product and applications, and promoted them across environments.
These foundational steps empower you to manage complex promotions confidently and effectively.
Related articles
Now that you’ve covered simple and advanced promotion scenarios, learn more on customizing promotion settings for products: