We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 609ee46 commit 8699217Copy full SHA for 8699217
packages/cdk-blue-green-container-deployment/README.md
@@ -136,6 +136,17 @@ export class BlueGreenContainerDeploymentStack extends Stack {
136
prodTrafficListener: prodListener,
137
testTrafficListener: testListener,
138
terminationWaitTimeInMinutes: 100,
139
+ createDeploymentConfigInput: {
140
+ computePlatform: "ECS",
141
+ deploymentConfigName: "Canary20Percent5Minute",
142
+ trafficRoutingConfig: {
143
+ type: "TimeBasedCanary",
144
+ timeBasedCanary: {
145
+ canaryInterval: 5,
146
+ canaryPercentage: 20,
147
+ },
148
149
150
});
151
152
// @see https://github.com/cloudcomponents/cdk-constructs/tree/master/examples/blue-green-container-deployment-example/blue-green-repository
0 commit comments