Quick start: Simple Promotion Flow with multiple environments

Promote product apps between multiple environments sequentially

Simple Promotion Flow with multiple environments quick start

Drag-and-drop promotion is ideal for on-demand promotions to a single environment.
Promotion Flows, in contrast, offer a structured approach to promoting changes across multiple environments while minimizing deployment risks.

This quick start guides you through creating a Promotion Flow with three environments.

We’ll do the following:

  • Set up a Promotion Flow
    Use the Flow Builder to create a Promotion Flow that promotes changes across multiple environments.

  • Trigger the promotion
    Manually trigger the Promotion Flow to orchestrate the promotion.

  • Monitor release
    Track the promotion’s progress in the product’s Releases tab.

Example Git repository

To follow along, use the following applications in the example GitHub repository. The repository contains the application manifests and resources for the quick starts:

  • trio-dev for the dev environment
  • trio-qa for the qa environment
  • trio-prod for the prod environment

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, and demo-trioapp-prodrepresenting 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.
  • Environments
    A Promotion Flow requires at least three environments. In this quick start, we use dev, qa, and prod.

Create a Promotion Flow for automated promotions

Promotion Flows allow for automated multi-environment promotions. You can create a Promotion Flow using the Flow Builder in either Chart or YAML mode.

NOTE
You must be an account administrator to create Promotion Flows.

Step-by-step
  1. In the Codefresh UI, on the toolbar, click the Settings icon.
  2. From the sidebar select Promotion Flows, and then click Add Promotion Flow.
  3. Enter the settings for the Promotion Flow:
    • Name: The name for the flow. For this quick start, we’ll use multi-env-sequential-promotion.
    • Description: (Optional) A brief description of the Promotion Flow.
    • Flow Timeout: The maximum duration allowed for the Promotion Flow to complete execution after being triggered, before it is automatically terminated. If not specified, the default timeout is 1 day (24 hours). For this quick start, we’ll set it to 5 minutes.
    • Version: (Optional) The version of the Promotion Flow. This is manually defined and manually updated, and is useful to indicate changes in the same flow. For the quick start, we’ll set it to 1.0.

Promotions quick start: Define Promotion Flow settings

Promotions quick start: Define Promotion Flow settings
  1. Click > to close the panel.
  2. Select the Trigger Environment as the starting point for the promotion. For the quick start, select dev.

Promotions quick start: Select Trigger Environment

Promotions quick start: Select Trigger Environment
  1. Select the target environments in the promotion sequence to which to promote changes. For example, qa and prod.
    1. Mouse over the right of the environment node to which to add the new environment (dev for example), and click .
    2. From the list, select the first target environment in the flow, qa for this quick start.
    3. Repeat the action on the newly added environment node (for example, qa) to add the next target environment. For the quick start, we’ll add prod as the final target environment in the flow.

Promotions quick start: Add target environment

Promotions quick start: Add target environment

Promotions quick start: Promotion Flow with required environments

Promotions quick start: Promotion Flow with required environments
  1. Click Save Promotion Flow.
    The Name and Description are populated from the Settings. The flow’s YAML version on the right lists the environment sequence.

Promotions quick start: Save Promotion Flow

Promotions quick start: Save Promotion Flow
  1. To add the new flow to the Promotion Flows list, click Save.

Promotions quick start: Promotion Flow list with new flow

Promotions quick start: Promotion Flow page with new flow
  1. Continue with Trigger Promotion Flow.

Trigger Promotion Flow

Manually trigger the Promotion Flow to promote changes from the Trigger Environment to target environments.

Step-by-step
  1. From the list of Promotion Flows, select the Promotion Flow you created, multi-env-sequential-promotion for example, and then click Trigger to initiate the promotion.

Promotions quick start: Trigger selected Promotion Flow

Promotions quick start: Trigger selected Promotion Flow
  1. Select the product to promote, for example, demo-trioapp, and continue by clicking Next.

Promotions quick start: Select product to promote

Promotions quick start: Select product to promote
  1. Select the application with the changes to promote.
    In our example, the application demo-trioapp-dev is automatically selected.
  2. To start promotion, click Trigger.
  3. Continue with View and monitor product release.

View and monitor Product release

Triggering the Promotion Flow creates a new release for the product (demo-trioapp), and orchestrates the changes sequentially through the environments defined in the Promotion Flow.

  • Click View Release Details to go to the release view and monitor the sequential progression of changes through dev, qa, and prod as per the multi-env-sequential-promotion Promotion Flow.

Promotions quick start: Release view for triggered Promotion Flow

Promotions quick start: Release view for triggered Promotion Flow
Release record in Releases tab

On the Releases page, the Promotion Flow column displays the name of the flow (multi-env-sequential-promotion for example) for traceability. For drag-and-drop promotions in contrast, this column displays Manual.

Promotions quick start: Release list with release record for triggered Promotion Flow

Promotions quick start: Release list with release record for triggered Promotion Flow

YAML for Promotion Flow

Here’s the YAML for the multi-env-sequential-promotion Promotion Flow.

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
    version: "1.00"
spec:
  triggerEnvironment: dev
  steps:
    - environment: qa
      dependsOn:
        - dev
      policy:
        action: commit
    - environment: prod
      dependsOn:
        - qa
      policy:
        action: commit
  promotionTimeoutLimit: 5

What’s next

The next quick start will guide you through adding Promotion Workflows to each environment in a Promotion Flow. Promotion Workflows act as gates for conditional promotions, giving you more control and flexibility over promotion processes.

Quick start: Advanced Promotion Flow with Promotion Workflows