title | description | ms.assetid | ms.prod | ms.technology | ms.manager | ms.date | ms.author | author |
---|---|---|---|---|---|---|---|---|
DevOps - Phase the roll-out of your application through rings |
Explore how to phase your application roll-out using a tier or ring model |
F6B1E468-A762-4E6A-BBAB-8D9C0EA8A095 |
vs-devops-phase-rollout-with-rings |
vs-devops-articles |
willys |
05/22/2017 |
willys |
josh garverick |
#**THIS IS DRAFT.2.1 - WORK IN PROGRESS **
In today's fast-paced, feature-driven markets, it is imperative to be able to deliver value and receive feedback on features quickly and continuously. Partnering with end-users to get early versions of features vetted out is extremely valuable.
Are you planning to build and deploy Visual Studio Team Services (VSTS) extensions to production? You probably have a few questions, such as:
- How do you embrace DevOps to deliver changes and value faster?
- How do you mitigate the risk of deploying to production?
- How do you automate the build and deployment?
This topic aims to answer this and share our implementation of tiers, or rings, within our production infrastructure for DevLabs extensions. For an insight into the guidelines we follow in Microsoft, please read Configuring your release pipelines for safe deployments.
Deployment rings are one of DevOps practices used to limit impact on end-users, while gradually deploying and validating change in production. The impact, sometimes called the "blast radius", is typically be evaluated through observation, testing, diagnosis of telemetry, and most importantly, user feedback.
Before you convert your deployment infrastructure to a ringed deployment model, it's important to consider the following:
- Who are your primary types of users? For example early adopters and users.
- What's your application topology?
- What's the value of embracing ringed deployment model?
- What's the cost to convert your current infrastructure to a ringed deployment model?
Our users fall into three general buckets in production:
- Canaries who voluntarily test bleeding edge features as soon as they are available.
- Early adopters who voluntarily preview releases, considered more refined than the canary bits.
- Users who consume our products, after passing through canaries and early adopters.
Tip
It’s important to weigh out which users in your value chain are best suited for each of these buckets. Communicating the opportunity to provide feedback, as well as the risk levels at each tier, is critical to setting expectations and ensuring success.
Next you need to map the topology of your application to the ringed deployment model. Remember, we want to limit the impact of change on end-users and to continuously deliver value. Value includes both the value delivered to the end-user and the value (return-on-investment) of converting your existing infrastructure.
Tip
The ringed deployment model is not a silver bullet! Start small, prototype, and continuously compare impact, value, and cost.
At the application level, the composition of our extensions is innocuous, easy to digest, scale, and deploy independently. Each extension has one of more web and script files, interfaces with Core client, REST client, and REST APIs, and persists state in cache or resilient storage.
At the infrastructure level, the extensions are published to the Visual Studio marketplace. Once installed in VSTS accounts, they are hosted by the VSTS web application, with state persisted to Azure storage and/or the extension data storage.
The extension topology is perfectly suited for the ring deployment model and we publish a version of each extension for each deployment ring:
- A private DEVelopment version for your canary ring
- A private BETA version for the early adopter ring
- A public PRODuction version for the public production ring
Tip
By publishing your extension as private, you're effectively limiting and controlling their exposure for users you explicitly invite.
Let's observe how a change triggers and moves through our ring based deployment process we're using for all our extension projects, using the VSTS Developer Tools Build Tasks extension.
VSTS Developer Tools Build Tasks extension is our secret sauce, used to package and publish Team Services extensions to the Visual Studio Marketplace.
-
A developer from the Countdown Widget extension project commits a change to the GitHub repository.
-
The commit triggers a continuous integration build.
-
The new build triggers a continuous deployment trigger, which automatically starts the Canaries environment deployment.
-
The Canaries deployment publishes a private extension to the marketplace and shares it with predefined VSTS accounts. At this point only the Canaries are impacted by the change.
-
The Canaries deployment triggers the Early Adopter environment deployment. This time we have a pre-deployment approval gate, which requires any one of the authorized users to approve the release.
-
The Early Adopter deployment publishes a private extension to the marketplace and shares it with predefined VSTS accounts. At this point both the Canaries and Early Adopter are impacted by the change.
-
The Early Adopter deployment triggers the Users environment deployment. This time we have a stricter pre-deployment approval gate, which requires all of the authorized users to approve the release.
-
The Users deployment publishes a public extension to the marketplace. At this stage, everyone who has installed the extension in their VSTS account is affected by the change.
-
It's key to realize that the impact ("blast radius") increases as your change moves through the rings. Exposing the change to the Canaries and the Early Adopters, is giving us two opportunities to validate the change and hotfix critical bugs before we release to production.
Tip
Review CI/CD Pipelines and Approvals for detailed documentation of our pipelines and the approval features for release management.
To detect and mitigate issues, learn from tracking usage, "test in production", determine cost and value, you need effective monitoring. Determine what type data is important, for example infrastructure issues, violations, and feature usage. Avoid noisy alerts which get ignored, or drown out alerts for higher priority issues.
Tip
Start with high-level views of your data, visual dashboards that you can watch from afar, and drill-down as needed. Perform, regular housekeeping of your views and remove all noise. A visual dashboard tells a far better story than hundreds of notification emails, often filtered and forgotten by email rules.
Here are a few examples of visual dashboards we use to "spot" the anomalies, the unexpected, and the overall health of our pipelines within the ring deployment model.
Using the Team Project Health and out-of-the-box extensions extension we have an overview of our pipeline builds and releases, as well as lead and cycle time trends. It's evident that we have 33 successful builds, 1 failed build, 12 successful releases, and 12 releases in progress.
Another dashboard gives us a visual view of all the release. The visual indicators and colours allow us to glance at these dashboards from afar. In fact, we only react if we see the X counters increment or parts of the dashboard turning red.
If you're looking for more detail you can use the build overview. We have a healthy code coverage, happy tests, and the BETA ring deployment is in progress.
You're able to continue the drill-down from visual cue to detailed telemetry. Using Application Insights you can drill into live metrics, smart detection, and usage telemetry.
The return on investment and ongoing value we get from the ring deployment model is astounding, especially considering our challenging environment. Our engineers are all part-time volunteers, geographically distributed around the globe, with limited bandwidth, and constantly challenged with a variety of time zones injecting latency into our process.
Here's a summary of how our engineering process has evolved since we have introduced ring deployment models.
We achieved consistent and reliable automation, we reduced all response times, we removed all error prone manual intervention, and our users are happy. Here's a recent example response from the marketplace that sums it all up" "Development team is quick to respond to bug fixes!".
No, rings and feature flags are symbiotic. Feature flags give you fine-grained control of features included in your change. For example, if you're not fully confident about a feature you can use feature flags to hide the feature in one or all of the deployment rings. For example, you could enable all features in the canaries ring, and fine-tune a subset for the early adopters and production users, as shown.
LaunchDarkly provides an extension for Visual Studio Team Services & Team Foundation Server. It integrates with VSTS RM and gives you "run-time" control of features deployed with your ring deployment process.
Now that you've covered the concepts and considerations of rings, and our implementation of rings, you should be confident to explore ways to improve your CI/CD pipelines. While the use of rings adds a level of complexity, having a game plan to address feature management and rapid customer feedback is invaluable.
Your goal should be to have a consistent checklist for the users approving a release. See aka.ms/vsarDoD for an example definition of done checklist.
There is no fixed duration or "cool off" period. It depends on how long it takes for you to complete all release validations successfully. In our environment changes are automatically delivered to the Canaries and as quickly as possible to the Early Adopters. Our objective is to gather telemetry and feedback from Canaries and Early Adopters, working in different and geographically distributed environments as quickly as possible.
The ring deployment model allows you to process a hotfix like any other change. The sooner an issue is caught, the sooner a hotfix can be deployed, with no impact to downstream rings.
Refer to Variables in Release Management.
Refer to Azure Key Vault to safeguard cryptographic keys and other secrets used by your pipelines.
##Reference information
Authors: Josh Garverick, Willy Schaub | Find the origin of this article and connect with the ALM Rangers here
(c) 2017 Microsoft Corporation. All rights reserved. This document is provided "as-is." Information and views expressed in this document, including URL and other Internet Web site references, may change without notice. You bear the risk of using it.
This document does not provide you with any legal rights to any intellectual property in any Microsoft product. You may copy and use this document for your internal, reference purposes.