Webhooks
The canary analysis can be extended with webhooks. Flagger will call each webhook URL and determine from the response status code (HTTP 2xx) if the canary is failing or not.
There are several types of hooks:
confirm-rollout hooks are executed before scaling up the canary deployment and can be used for manual approval. The rollout is paused until the hook returns a successful HTTP status code.
pre-rollout hooks are executed before routing traffic to canary. The canary advancement is paused if a pre-rollout hook fails and if the number of failures reach the threshold the canary will be rollback.
rollout hooks are executed during the analysis on each iteration before the metric checks. If a rollout hook call fails the canary advancement is paused and eventfully rolled back.
confirm-traffic-increase hooks are executed right before the weight on the canary is increased. The canary advancement is paused until this hook returns HTTP 200.
confirm-promotion hooks are executed before the promotion step. The canary promotion is paused until the hooks return HTTP 200. While the promotion is paused, Flagger will continue to run the metrics checks and rollout hooks.
post-rollout hooks are executed after the canary has been promoted or rolled back. If a post rollout hook fails the error is logged.
rollback hooks are executed while a canary deployment is in either Progressing or Waiting status. This provides the ability to rollback during analysis or while waiting for a confirmation. If a rollback hook returns a successful HTTP status code, Flagger will stop the analysis and mark the canary release as failed.
event hooks are executed every time Flagger emits a Kubernetes event. When configured, every action that Flagger takes during a canary deployment will be sent as JSON via an HTTP POST request.
Spec:
Note that the sum of all rollout webhooks timeouts should be lower than the analysis interval.
Webhook payload (HTTP POST):
The checksum field is hashed from the TrackedConfigs and LastAppliedSpec of the Canary, it can be used to identify a Canary for a specific configuration of the deployed resources.
Response status codes:
200-202 - advance canary by increasing the traffic weight
timeout or non-2xx - halt advancement and increment failed checks
On a non-2xx response Flagger will include the response body (if any) in the failed checks log and Kubernetes events.
Event payload (HTTP POST):
The event receiver can create alerts based on the received phase (possible values: Initialized
, Waiting
, Progressing
, Promoting
, Finalising
, Succeeded
or Failed
).
The webhook request can be retried by specifying a positive integer in the retries
field.
Load Testing
For workloads that are not receiving constant traffic Flagger can be configured with a webhook, that when called, will start a load test for the target workload. If the target workload doesn't receive any traffic during the canary analysis, Flagger metric checks will fail with "no values found for metric request-success-rate".
Flagger comes with a load testing service based on rakyll/hey that generates traffic during analysis when configured as a webhook.
First you need to deploy the load test runner in a namespace with sidecar injection enabled:
Or by using Helm:
When deployed the load tester API will be available at http://flagger-loadtester.test/
.
Now you can add webhooks to the canary analysis spec:
When the canary analysis starts, Flagger will call the webhooks and the load tester will run the hey
commands in the background, if they are not already running. This will ensure that during the analysis, the podinfo-canary.test
service will receive a steady stream of GET and POST requests.
If your workload is exposed outside the mesh you can point hey
to the public URL and use HTTP2.
For gRPC services you can use bojand/ghz which is a similar tool to Hey but for gRPC:
ghz
uses reflection to identify which gRPC method to call. If you do not wish to enable reflection for your gRPC service you can implement a standardized health check from the grpc-proto library. To use this health check schema without reflection you can pass a parameter to ghz
like this
The load tester can run arbitrary commands as long as the binary is present in the container image. For example if you want to replace hey
with another CLI, you can create your own Docker image:
Load Testing Delegation
The load tester can also forward testing tasks to external tools, by now nGrinder is supported.
To use this feature, add a load test task of type 'ngrinder' to the canary analysis spec:
When the canary analysis starts, the load tester will initiate a clone_and_start request to the nGrinder server and start a new performance test. the load tester will periodically poll the nGrinder server for the status of the test, and prevent duplicate requests from being sent in subsequent analysis loops.
K6 Load Tester
You can also delegate load testing to a third-party webhook. An example of this is the k6 webhook
. This webhook uses k6
, a very featureful load tester, to run load or smoke tests on canaries. For all features available, see the source repository.
Here's an example integrating this webhook as a pre-rollout
step, to load test a service before any traffic is sent to it:
Integration Testing
Flagger comes with a testing service that can run Helm tests, Bats tests or Concord tests when configured as a webhook.
Deploy the Helm test runner in the kube-system
namespace using the tiller
service account:
When deployed the Helm tester API will be available at http://flagger-helmtester.kube-system/
.
Now you can add pre-rollout webhooks to the canary analysis spec:
When the canary analysis starts, Flagger will call the pre-rollout webhooks before routing traffic to the canary. If the helm test fails, Flagger will retry until the analysis threshold is reached and the canary is rolled back.
If you are using Helm v3, you'll have to create a dedicated service account and add the release namespace to the test command:
If the test hangs or logs error messages hinting to insufficient permissions it can be related to RBAC, check the Troubleshooting section for an example configuration.
As an alternative to Helm you can use the Bash Automated Testing System to run your tests.
Note that you should create a ConfigMap with your Bats tests and mount it inside the tester container.
You can also configure the test runner to start a Concord process.
org
, project
, repo
and entrypoint
represents where your test process runs in Concord. In order to authenticate to Concord, you need to set apiKeyPath
to a path of a file containing a valid Concord API key on the flagger-helmtester
container. This can be done via mounting a Kubernetes secret in the tester's Deployment. pollInterval
represents the interval in seconds the web-hook will call Concord to see if the process has finished (Default is 5s). pollTimeout
represents the time in seconds the web-hook will try to call Concord before timing out (Default is 30s).
If you need to start a Pod/Job to run tests, you can do so using kubectl
.
Note that you need to setup RBAC for the load tester service account in order to run kubectl
and helm
commands.
Manual Gating
For manual approval of a canary deployment you can use the confirm-rollout
and confirm-promotion
webhooks. The confirmation rollout hooks are executed before the pre-rollout hooks. For manually approving traffic weight increase, you can use the confirm-traffic-increase
webhook. Flagger will halt the canary traffic shifting and analysis until the confirm webhook returns HTTP status 200.
For manual rollback of a canary deployment you can use the rollback
webhook. The rollback hook will be called during the analysis and confirmation states. If a rollback webhook returns a successful HTTP status code, Flagger will shift all traffic back to the primary instance and fail the canary.
Manual gating with Flagger's tester:
The /gate/halt
returns HTTP 403 thus blocking the rollout.
If you have notifications enabled, Flagger will post a message to Slack or MS Teams if a canary rollout is waiting for approval.
The notifications can be disabled with:
Change the URL to /gate/approve
to start the canary analysis:
Manual gating can be driven with Flagger's tester API. Set the confirmation URL to /gate/check
:
By default the gate is closed, you can start or resume the canary rollout with:
You can pause the rollout at any time with:
If a canary analysis is paused the status will change to waiting:
The confirm-promotion
hook type can be used to manually approve the canary promotion. While the promotion is paused, Flagger will continue to run the metrics checks and load tests.
The rollback
hook type can be used to manually rollback the canary promotion. As with gating, rollbacks can be driven with Flagger's tester API by setting the rollback URL to /rollback/check
By default, rollback is closed, you can rollback a canary rollout with:
You can close the rollback with:
If you have notifications enabled, Flagger will post a message to Slack or MS Teams if a canary has been rolled back.
Troubleshooting
Manually check if helm test is running
To debug in depth any issues with helm tests, you can execute commands on the flagger-loadtester pod.
Helm tests hang during canary deployment
If test execution hangs or displays insufficient permissions, check your RBAC settings.
Last updated