@codedazur/cdk-docker-cluster 0.9.6 → 0.9.8
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/CHANGELOG.md +13 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @codedazur/cdk-docker-cluster
|
|
2
2
|
|
|
3
|
+
## 0.9.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`a1e21fa`](https://github.com/codedazur/toolkit/commit/a1e21faf3bb700e9ba6b92cbac345f696e19dd03)]:
|
|
8
|
+
- @codedazur/cdk-site-distribution@0.6.0
|
|
9
|
+
|
|
10
|
+
## 0.9.7
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [#296](https://github.com/codedazur/toolkit/pull/296) [`ed9f7e6`](https://github.com/codedazur/toolkit/commit/ed9f7e62e0f1a53d34356963ac9bcfab77219b45) Thanks [@rickootes](https://github.com/rickootes)! - Correct typo in autoscaling configuration.
|
|
15
|
+
|
|
3
16
|
## 0.9.6
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -29,7 +29,7 @@ interface SourceProps {
|
|
|
29
29
|
/**
|
|
30
30
|
* An Docker cluster on a load balanced Fargate service on EC2, using an image
|
|
31
31
|
* built from a Dockerfile in a directory and pushed to ECR.
|
|
32
|
-
* @todo Make the distribution and
|
|
32
|
+
* @todo Make the distribution and load balancer optional, to reduce cost and
|
|
33
33
|
* increase deployment speed for development environments.
|
|
34
34
|
*/
|
|
35
35
|
declare class DockerCluster extends Construct {
|
package/dist/index.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ interface SourceProps {
|
|
|
29
29
|
/**
|
|
30
30
|
* An Docker cluster on a load balanced Fargate service on EC2, using an image
|
|
31
31
|
* built from a Dockerfile in a directory and pushed to ECR.
|
|
32
|
-
* @todo Make the distribution and
|
|
32
|
+
* @todo Make the distribution and load balancer optional, to reduce cost and
|
|
33
33
|
* increase deployment speed for development environments.
|
|
34
34
|
*/
|
|
35
35
|
declare class DockerCluster extends Construct {
|
package/dist/index.js
CHANGED
|
@@ -78,7 +78,7 @@ var DockerCluster = class extends import_constructs.Construct {
|
|
|
78
78
|
}
|
|
79
79
|
});
|
|
80
80
|
if (typeof ((_j = this.props.service) == null ? void 0 : _j.tasks) === "object") {
|
|
81
|
-
|
|
81
|
+
service.service.autoScaleTaskCount({
|
|
82
82
|
minCapacity: (_k = this.props.service) == null ? void 0 : _k.tasks.minimum,
|
|
83
83
|
maxCapacity: (_l = this.props.service) == null ? void 0 : _l.tasks.maximum
|
|
84
84
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -62,7 +62,7 @@ var DockerCluster = class extends Construct {
|
|
|
62
62
|
}
|
|
63
63
|
});
|
|
64
64
|
if (typeof ((_j = this.props.service) == null ? void 0 : _j.tasks) === "object") {
|
|
65
|
-
|
|
65
|
+
service.service.autoScaleTaskCount({
|
|
66
66
|
minCapacity: (_k = this.props.service) == null ? void 0 : _k.tasks.minimum,
|
|
67
67
|
maxCapacity: (_l = this.props.service) == null ? void 0 : _l.tasks.maximum
|
|
68
68
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codedazur/cdk-docker-cluster",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.8",
|
|
4
4
|
"main": ".dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"constructs": ">=10"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@codedazur/cdk-site-distribution": "^0.
|
|
30
|
+
"@codedazur/cdk-site-distribution": "^0.6.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/node": "^20.14.10",
|