In this part, you will test how to execute a "canary" deployment pattern. The Canary type implies creating new pods in parallel with existing ones, in the same way as the Rolling Update does, but gives a bit more control over the update process.
Like with the Blue-Green strategy in the previous exercise, a Canary type isn’t included natively in the ".spec.strategy.type". However, it can also be realized without having to install and manage additional controllers in your Kubernetes cluster.
In this exercise, we will achieve this by creating two Deployments and a Service with the same set of labels in its selector. After running a new version of an application, some part of new requests will be routed to it, and some part will proceed using the old version. If the new version is working well, then the rest of the users will be switched to the new one and old pods will be deleted.
Advantages
Low/No application downtime
New version is released gradually and can be rolled back if quality not acceptable
This assumes that you have already completed at least "Part-1" and have an operational GitOps pipeline syncing artifacts from your Git repository.
Navigate to your Git repo -> echo.yaml file and Edit
Copy the following YAML and update the file
Commit the changes in your Git repository
Note that we have "two deployments". The first one called "echo" is active and has two replicas. The second one is called "echo-canary" and has zero replicas.
The Git commit will trigger the Gitops pipeline. It will automatically update the workload on the cluster adding the replica from the "Canary" deployment into the mix. You should start seeing responses from the Canary replicas "Canary" like the following in a few minutes with zero downtime.
ProdProdProdProdCanaryProdCanaryProd
If you check the pods via the zero trust kubectl, you should see something like the following:
kubectl get po -n echoNAME READY STATUS RESTARTS AGEecho-84dc79598c-dm5dp 1/1 Running 0 3m47secho-84dc79598c-jcsdt 1/1 Running 0 3m47secho-canary-66849577f8-424km 1/1 Running 0 32s
At this point, users are being served by both the existing replicas and the canary replica. Depending on behavior of the canary, users can scale it up or scale it down by simply changing the replica count in the Git repo.