A pattern to roll out new features to only a small subset of users before rolling it out to the entire infrastructure.
Route 5% of traffic to v2 pods. If no errors, increase to 100%.
class CanaryDeployment:\n def __init__(self):\n pass\n\n def execute(self):\n print('Executing Canary Deployment')