Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Blue Green Deployment with Helm Charts

We Could deploy applications using 'Helm Charts' with

helm install --name the-release  helm/the-service-helm --namespace myns

And we cold 'Rolling Upgrade' the deployment using,

helm upgrade --recreate-pods the-release helm/the-service-helm --namespace myns

Is there a way to use 'Helm Charts' to achieve 'Blue/Green' Deployments?

like image 306
Janitha Madushan Avatar asked Sep 10 '19 03:09

Janitha Madushan


People also ask

How do you do blue-green deployment in Kubernetes?

Kubernetes does not provide blue/green deployment functionality out of the box. What it does provide is the Deployment object which lets you do a “rolling update”. This allows you to update an application with zero downtime, by gradually replacing pods with the new version of an application.

How does Bluegreen deployment work?

A blue/green deployment is a deployment strategy in which you create two separate, but identical environments. One environment (blue) is running the current application version and one environment (green) is running the new application version.

What is Helm chart deployment?

Helm and Helm Charts Explained. Helm is a Kubernetes deployment tool for automating creation, packaging, configuration, and deployment of applications and services to Kubernetes clusters. Kubernetes is a powerful container-orchestration system for application deployment.

Is it possible to use helm for blue/green deployment?

Blue/Green is not recommended in Helm. But there are workaround solutions As per to helm issue #3518, it's not recommended to use Helm for blue/green or canary deployment. However there is a Helm chart for that case. Helm itself is not intended for the case. See their explanation:

What is blue/green deployment?

What is blue/green deployment? Blue-green deployment is a technique that reduces downtime and risk by running two identical production environments called Blue and Green. At any time, only one of the environments is live, with the live environment serving all production traffic. For this example, Blue is currently live and Green is idle.

How does helm work with charts?

See their explanation: Helm works more in the sense of a traditional package manager, upgrading charts from one version to the next in a graceful manner (thanks to pod liveness/readiness probes and deployment update strategies), much like how one expects something like apt upgrade to work.


Video Answer


1 Answers

Let's start from definitions

Since there are many deployment strategies, let's start from the definition.

As per Martin Flower:

The blue-green deployment approach does this by ensuring you have two production environments, as identical as possible. At any time one of them, let's say blue for the example, is live. As you prepare a new release of your software you do your final stage of testing in the green environment. Once the software is working in the green environment, you switch the router so that all incoming requests go to the green environment - the blue one is now idle.

Blue/Green is not recommended in Helm. But there are workaround solutions

  • As per to helm issue #3518, it's not recommended to use Helm for blue/green or canary deployment.

  • There are at least 3 solutions based on top of Helm, see below

  • However there is a Helm chart for that case.

Helm itself (TL;DR: not recommended)

Helm itself is not intended for the case. See their explanation:

direct support for blue / green deployment pattern in helm · Issue #3518 · helm/helm

Helm works more in the sense of a traditional package manager, upgrading charts from one version to the next in a graceful manner (thanks to pod liveness/readiness probes and deployment update strategies), much like how one expects something like apt upgrade to work. Blue/green deployments are a very different beast compared to the package manager style of upgrade workflows; blue/green sits at a level higher in the toolchain because the use cases around these deployments require step-in/step-out policies, gradual traffic migrations and rollbacks. Because of that, we decided that blue/green deployments are something out of scope for Helm, though a tool that utilizes Helm under the covers (or something parallel like istio) could more than likely be able to handle that use case.

Other solutions based on Helm

There are at least three solution based on top of Helm, described and compared here:

  • Shipper
  • Istio
  • Flagger.

Shipper by Booking.com - DEPRECATED

bookingcom/shipper: Kubernetes native multi-cluster canary or blue-green rollouts using Helm

It does this by relying on Helm, and using Helm Charts as the unit of configuration deployment. Shipper's Application object provides an interface for specifying values to a Chart just like the helm command line tool. Shipper consumes Charts directly from a Chart repository like ChartMuseum, and installs objects into clusters itself. This has the nice property that regular Kubernetes authentication and RBAC controls can be used to manage access to Shipper APIs.

Kubernetes native multi-cluster canary or blue-green rollouts using Helm

Istio

You can try something like this:

kubectl create -f <(istioctl kube-inject -f cowsay-v1.yaml) # deploy v1
kubectl create -f <(istioctl kube-inject -f cowsay-v2.yaml) # deploy v1

Flagger.

There is guide written by Flagger team: Blue/Green Deployments - Flagger This guide shows you how to automate Blue/Green deployments with Flagger and Kubernetes

You might try Helm itself

Also, as Kamol Hasan recommended, you can try that chart: puneetsaraswat/HelmCharts/blue-green.

blue.yml sample

{{ if .Values.blue.enabled }}
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: {{ template "blue-green.fullname" . }}-blue
  labels:
    release: {{ .Release.Name }}
    chart: {{ .Chart.Name }}-{{ .Chart.Version }}
    app: {{ template "blue-green.name" . }}
spec:
  replicas: {{ .Values.replicaCount }}
  template:
    metadata:
      labels:
        app: {{ template "blue-green.name" . }}
        release: {{ .Release.Name }}
        slot: blue
    spec:
      containers:
        - name: {{ template "blue-green.name" . }}-blue
          image: nginx:stable
          imagePullPolicy: IfNotPresent
          ports:
            - name: http
              containerPort: 80
              protocol: TCP
          # This (and the volumes section below) mount the config map as a volume.
          volumeMounts:
            - mountPath: /usr/share/nginx/html
              name: wwwdata-volume
      volumes:
        - name: wwwdata-volume
          configMap:
            name: {{ template "blue-green.fullname" . }}
{{ end }}

Medium blog post: Blue/Green Deployments using Helm Charts

like image 138
Yasen Avatar answered Oct 09 '22 21:10

Yasen