Skip to main content

Deployment Strategies

In Kubernetes or Openshift you can set the Deployment Strategies of the application or microservice.
This page explains you how.


1. In your manifest repository's main branch, you will find the values.yaml file, it showld be in the following folder structure [environment]/[project]/[application]

2. In the values.yaml file, search for the Deployment Strategies section, you will find it like this:


## Deployment Strategies ( default: rolling )

3. Bellow the section title, add the following configuration and change the values as you need:

## Deployment strategies ( default: rolling )
strategy:
canary:
enabled: false
tenPercentDuration: "2m"
twentyPercentDuration: "2m"
fiftyPercentDuration: "2m"
bluegreen:
enabled: false
#####

4. Commit and enjoy! ✨