Skip to the content.

← back to Overview


1. Introduction

This guide will help you set up a Continuous Integration (CI) pipeline for your project using the Digital Solutions Platform (DSP).

DSP Team is providing standard starter workflows which can be used in your project with minimal effort, it enables developer to focus only on the code and not on the CI/CD configuration, so they can develop only features that add value to the project.


2. Prerequisites


3. Setting up CI

3.1 Contact DSP for Initial Setup

Please contact DSP Team via the Help Desk to configure the initial integration for your project. The team will assist with:

3.2 Using Starter Workflows

After the initial setup, explore the Starter Workflows Repository. These workflows are pre-configured and require minimal customization.

3.3 Configuring GitOps Automation

The GitOps automation workflow creates pull requests in your GitOps repository to update deployment manifests with new container image tags.

Add the GitOps update workflow to your main repository’s .github/workflows directory.

An example file is available in the Starter Workflows repository.

3.4 ArgoCD Deployment

Once changes are merged into the main branch of the GitOps repository:


4. Using DSP Hosted GitHub Runner

The DSP team provides GitHub Runners for every organization, which is hosted on the Vaillant Group infrastructure. This allows you to run your CI/CD workflows on internal network and dedicated hardware for cost-effective and secure execution.

Currently, we support the following runners:

4.1 Using DSP Hosted Runner

We are providing runners for each organization, which can be used for all repositories within the organization. To use the DSP hosted runner, add the runner label to your workflow file into the runs-on section.

jobs:
  build:
    runs-on: dsp-linux

5. Testing and Validation

After setting up the workflows you can trigger a workflows by committing and pushing changes to the main repository. The CI should run build and test steps, and deploy the application to the target environment, with building and pushing the container image.

Check yours GitOps repository for the newly created Pull Request with the updated image tag.

If you want to deploy that changes, just merge the PR in the GitOps repository and monitor as ArgoCD applies the changes to the environment.


6. Need Assistance?

For support or additional customization, contact the DSP team via the Help Desk. The team will assist you in addressing any issues or implementing advanced features.


Happy deploying with DSP! 🚀