@codedazur/cdk-docker-cluster 0.6.1 → 0.6.2
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 +9 -0
- package/dist/index.js +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @codedazur/cdk-docker-cluster
|
|
2
2
|
|
|
3
|
+
## 0.6.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`0f0bad2`](https://github.com/codedazur/toolkit/commit/0f0bad20fec5c212979b24f1c67d7cbf5427c016) Thanks [@thijsdaniels](https://github.com/thijsdaniels)! - The load blancer is now internet-facing.
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`58b894d`](https://github.com/codedazur/toolkit/commit/58b894d62bfd01f852233a95b75ffa538a5bc7f1)]:
|
|
10
|
+
- @codedazur/cdk-site-distribution@0.1.4
|
|
11
|
+
|
|
3
12
|
## 0.6.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -73,8 +73,7 @@ var DockerCluster = class extends import_constructs.Construct {
|
|
|
73
73
|
circuitBreaker: {
|
|
74
74
|
enable: true,
|
|
75
75
|
rollback: true
|
|
76
|
-
}
|
|
77
|
-
publicLoadBalancer: false
|
|
76
|
+
}
|
|
78
77
|
});
|
|
79
78
|
if (typeof ((_j = this.props.service) == null ? void 0 : _j.tasks) === "object") {
|
|
80
79
|
this.service.service.autoScaleTaskCount({
|
package/dist/index.mjs
CHANGED
|
@@ -54,8 +54,7 @@ var DockerCluster = class extends Construct {
|
|
|
54
54
|
circuitBreaker: {
|
|
55
55
|
enable: true,
|
|
56
56
|
rollback: true
|
|
57
|
-
}
|
|
58
|
-
publicLoadBalancer: false
|
|
57
|
+
}
|
|
59
58
|
});
|
|
60
59
|
if (typeof ((_j = this.props.service) == null ? void 0 : _j.tasks) === "object") {
|
|
61
60
|
this.service.service.autoScaleTaskCount({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codedazur/cdk-docker-cluster",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
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.1.
|
|
30
|
+
"@codedazur/cdk-site-distribution": "^0.1.4"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/node": "^20.14.9",
|