"Just stick your app in a container and deploy it - it's super easy, fast, scalable, and portable," said everyone two years ago.
Turns out deploying microservices in containers isn't as easy as we first thought.
"No problem, just use Kubernetes to manage your containers," said everyone a year ago.
Turns out managing Kubernetes isn't exactly easy, unless you have a deep penchant for YAML.
Today, the latest buzzword hot technology is Istio.
Istio is an open-source service mesh.
Think of it as a management wrapper around all your microservices (and infrastructure) so you can control their connectivity and security.
Imagine a bouncer/doorman watching the door to each of your pods inside all your Kubernetes clusters. This is basically what an Istio Envoy/Proxy is.
Istio also claims to do observability (monitor, log, trace) but then again, so does everyone else these days :))
From the Istio website, core functionality is defined as:
Istio was designed for extensibility, more specifically to support a wide range of microservices deployment patterns. It, therefore, comes as no surprise why Harness decided to support Istio and make it a first-class citizen inside our platform.
In short, Istio makes things like Blue-Green and Canary deployments much simpler for Kubernetes-based applications.
Let's build a simple blue-green deployment that uses canary phases to control how application traffic is migrated from the green environment (live current version) to the blue environment (staging new version) using Harness, Amazon EKS, and Istio.
We give our new workflow a name, a canary deployment type, and an environment to perform the deployment.
Next, let's create our canary phases, which will migrate traffic for our blue-green environment setup using Istio.
Click 'Add Phase' and select the artifact you wish to deploy and the service infrastructure (environment instance) you want to deploy to.
To configure Istio, click 'Kubernetes Service Setup.'
Now click 'Service Setup' and select Load Balancer from the dropdown.
Click 'Ingress Rules' and select Istio from the dropdown and enter your Gateway/Host information:
Finally, click 'Upgrade Containers' and enter 100% for desired blue environment instances and 100% for instances for the green current environment. This basically means two environments will have the same number of instances running, but all traffic will remain directed to the green (current) environment.
To split the traffic, we simply enter the % of the traffic we wish to move to the blue environment (new version instances) for our canary phase, in this case 10%.
Lastly, once we redirect traffic to our blue environment we can add one or more verifications to our canary phases to validate the availability, performance, and quality of the traffic/users that are using this environment.
We do this so that if verifications fail, we can easily roll back all traffic to the green environment in seconds. If verifications succeed we can then move to the next canary phase and split more traffic via Istio to the new blue environment.
Once we define our canary phases, we end up with a deployment workflow that looks like this:
Phase 1 sets up up the blue environment with 100% of the instances that are available in the green environment and deploys the new artifact to the blue environment. All traffic at this point is still directed to the green environment.
Phase 2 then redirects 10% of the traffic to the blue environment using Istio. If verification succeeds then deployment continues to Phase 3, else the deployment rolls back all traffic using Istio to the green environment.
Phase 3 then redirects 100% of the traffic to the blue environment using Istio.
The good news is that you can templatize this deployment workflow using workflow variables to parameterize the inputs (artifacts, environments, etc.) so that multiple teams can leverage a standard blue-green or canary deployment.
Once we've built our new deployment workflow we can now run it :)
Below is the real-time deployment workflow that illustrates every step and output of the blue-green deployment.
In the below screenshot, we can see canary phase 2 of our blue-green deployment and what actually happened from the Kubernetes Controller and Istio perspective by viewing the actual console output from the traffic splitting. We can clearly see that 90% of traffic is pointed to green (current version) and 10% is pointed to blue (new version).
We can also see the verification steps that followed once the traffic split was made. In the example above we kicked off a load test on the blue environment, then validated metrics in Prometheus, New Relic and also log files in Sumo Logic. Lastly, manual approval was then required to move to Phase 3 of the canary deployment.
That's it, all done, building a blue-green/canary deployment with Harness and Istio should take you no more than 5 minutes to create/run.
I'll shortly be creating a video that walks through the above steps (I'm recovering from a cold so my demo voice is a bit weezy right now).
Cheers!
Steve.
@BurtonSays
Enjoyed reading this blog post or have questions or feedback?
Share your thoughts by creating a new topic in the Harness community forum.