@spinnaker/ecs 0.0.364 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@spinnaker/ecs",
3
3
  "license": "Apache-2.0",
4
- "version": "0.0.364",
4
+ "version": "0.1.1",
5
5
  "module": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
7
7
  "publishConfig": {
@@ -16,9 +16,9 @@
16
16
  "lib": "npm run build"
17
17
  },
18
18
  "dependencies": {
19
- "@spinnaker/amazon": "^0.14.3",
20
- "@spinnaker/core": "^0.28.0",
21
- "@spinnaker/docker": "^0.0.145",
19
+ "@spinnaker/amazon": "^0.14.5",
20
+ "@spinnaker/core": "^0.29.1",
21
+ "@spinnaker/docker": "^0.0.147",
22
22
  "@uirouter/angularjs": "1.0.26",
23
23
  "@uirouter/react": "1.0.7",
24
24
  "angular": "1.6.10",
@@ -42,5 +42,5 @@
42
42
  "shx": "0.3.3",
43
43
  "typescript": "4.3.5"
44
44
  },
45
- "gitHead": "20d6ca89f39a5f44a802a1ccaffd669587450d76"
45
+ "gitHead": "2f7f8de7b0c43ea29ac505a9b4c0f5d9b29456f4"
46
46
  }
package/src/ecs.help.ts CHANGED
@@ -36,6 +36,7 @@ const helpContents: { [key: string]: string } = {
36
36
  'ecs.placementStrategy':
37
37
  '<p>The strategy the container scheduler will be using. See <a href="http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-strategies.html" target="_blank">AWS documentation</a> for more details. </p><p>You should at least balance across availability zones</p><p>Custom placement strategies have not been implemented yet.</p>',
38
38
  'ecs.platformVersion': '<p>Defaults to the latest platform version.</p>',
39
+ 'ecs.enableDeploymentCircuitBreaker': '<p>Enable circuit breaker for the ECS service.</p>',
39
40
  'ecs.capacity.copySourceScalingPoliciesAndActions':
40
41
  '<p>Copy Application Autoscaling policies and their associated alarms from the previous ECS service.</p>',
41
42
  'ecs.launchtype': '<p>Launch service tasks on your own EC2 instances or on Fargate.</p>',
@@ -151,6 +151,7 @@ angular
151
151
  copySourceScalingPoliciesAndActions: true,
152
152
  preferSourceCapacity: true,
153
153
  useSourceCapacity: true,
154
+ enableDeploymentCircuitBreaker: false,
154
155
  viewState: {
155
156
  useAllImageSelection: false,
156
157
  useSimpleCapacity: true,
@@ -78,6 +78,16 @@
78
78
  </div>
79
79
  </div>
80
80
 
81
+ <div class="form-group">
82
+ <div class="col-md-5 sm-label-right">
83
+ Enable Deployment Circuit Breaker
84
+ <help-field key="ecs.enableDeploymentCircuitBreaker"></help-field>
85
+ </div>
86
+ <div class="col-md-3">
87
+ <input type="checkbox" ng-model="$ctrl.command.enableDeploymentCircuitBreaker" />
88
+ </div>
89
+ </div>
90
+
81
91
  <div class="form-group">
82
92
  <div class="col-md-5 sm-label-right">
83
93
  <b>Placement Strategy</b> <help-field key="ecs.placementStrategy"></help-field>