@envsync-cloud/deploy-cli 0.6.8 → 0.6.10
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/dist/index.js +11 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -325,7 +325,7 @@ function normalizeConfig(raw) {
|
|
|
325
325
|
web: derivedImages.web,
|
|
326
326
|
landing: derivedImages.landing,
|
|
327
327
|
clickstack: raw.images?.clickstack ?? "clickhouse/clickstack-all-in-one:latest",
|
|
328
|
-
traefik: raw.images?.traefik ?? "traefik:v3.
|
|
328
|
+
traefik: raw.images?.traefik ?? "traefik:v3.6.6",
|
|
329
329
|
otel_agent: raw.images?.otel_agent ?? "otel/opentelemetry-collector-contrib:0.111.0"
|
|
330
330
|
},
|
|
331
331
|
services: {
|
|
@@ -748,10 +748,14 @@ services:
|
|
|
748
748
|
traefik:
|
|
749
749
|
image: ${config.images.traefik}
|
|
750
750
|
command:
|
|
751
|
-
- --providers.
|
|
752
|
-
- --providers.docker.
|
|
751
|
+
- --providers.swarm=true
|
|
752
|
+
- --providers.swarm.endpoint=unix:///var/run/docker.sock
|
|
753
|
+
- --providers.swarm.exposedByDefault=false
|
|
753
754
|
- --providers.file.filename=/etc/traefik/dynamic/traefik-dynamic.yaml
|
|
754
755
|
- --entrypoints.web.address=:80
|
|
756
|
+
- --entrypoints.web.http.redirections.entryPoint.to=websecure
|
|
757
|
+
- --entrypoints.web.http.redirections.entryPoint.scheme=https
|
|
758
|
+
- --entrypoints.web.http.redirections.entryPoint.permanent=true
|
|
755
759
|
- --entrypoints.websecure.address=:443
|
|
756
760
|
- --certificatesresolvers.letsencrypt.acme.email=${config.domain.acme_email}
|
|
757
761
|
- --certificatesresolvers.letsencrypt.acme.storage=/var/lib/traefik/acme.json
|
|
@@ -808,10 +812,12 @@ ${renderEnvList({
|
|
|
808
812
|
- traefik.http.routers.s3.rule=Host(\`${hosts.s3}\`)
|
|
809
813
|
- traefik.http.routers.s3.entrypoints=websecure
|
|
810
814
|
- traefik.http.routers.s3.tls.certresolver=letsencrypt
|
|
815
|
+
- traefik.http.routers.s3.service=s3
|
|
811
816
|
- traefik.http.services.s3.loadbalancer.server.port=9000
|
|
812
817
|
- traefik.http.routers.s3-console.rule=Host(\`${hosts.s3Console}\`)
|
|
813
818
|
- traefik.http.routers.s3-console.entrypoints=websecure
|
|
814
819
|
- traefik.http.routers.s3-console.tls.certresolver=letsencrypt
|
|
820
|
+
- traefik.http.routers.s3-console.service=s3-console
|
|
815
821
|
- traefik.http.services.s3-console.loadbalancer.server.port=9001
|
|
816
822
|
|
|
817
823
|
keycloak_db:
|
|
@@ -1490,7 +1496,7 @@ async function cmdSetup() {
|
|
|
1490
1496
|
web: releaseImages.web,
|
|
1491
1497
|
landing: releaseImages.landing,
|
|
1492
1498
|
clickstack: "clickhouse/clickstack-all-in-one:latest",
|
|
1493
|
-
traefik: "traefik:v3.
|
|
1499
|
+
traefik: "traefik:v3.6.6",
|
|
1494
1500
|
otel_agent: "otel/opentelemetry-collector-contrib:0.111.0"
|
|
1495
1501
|
},
|
|
1496
1502
|
services: {
|
|
@@ -1697,7 +1703,7 @@ async function cmdUpgrade() {
|
|
|
1697
1703
|
async function cmdUpgradeDeps() {
|
|
1698
1704
|
logSection("Upgrade Dependencies");
|
|
1699
1705
|
const { config } = loadState();
|
|
1700
|
-
config.images.traefik = "traefik:v3.
|
|
1706
|
+
config.images.traefik = "traefik:v3.6.6";
|
|
1701
1707
|
config.images.clickstack = "clickhouse/clickstack-all-in-one:latest";
|
|
1702
1708
|
config.images.otel_agent = "otel/opentelemetry-collector-contrib:0.111.0";
|
|
1703
1709
|
saveDesiredConfig(config);
|