Compare commits

...

3 Commits

Author SHA1 Message Date
Mauricio Siu
159584c5df refactor: update 2024-12-25 01:44:16 -06:00
Mauricio Siu
bffd8c3e9c refactor: test 2024-12-25 01:32:33 -06:00
Mauricio Siu
5e7486859f refactor: update 2024-12-25 01:32:07 -06:00
2 changed files with 287 additions and 287 deletions

View File

@@ -99,14 +99,14 @@ workflows:
only: only:
- main - main
- canary - canary
- fix/nixpacks-version - 804-services-deployed-via-dokploy-inaccessible-after-customizing-traefik-ports-via-environment-variables
- build-arm64: - build-arm64:
filters: filters:
branches: branches:
only: only:
- main - main
- canary - canary
- fix/nixpacks-version - 804-services-deployed-via-dokploy-inaccessible-after-customizing-traefik-ports-via-environment-variables
- combine-manifests: - combine-manifests:
requires: requires:
- build-amd64 - build-amd64
@@ -116,4 +116,4 @@ workflows:
only: only:
- main - main
- canary - canary
- fix/nixpacks-version - 804-services-deployed-via-dokploy-inaccessible-after-customizing-traefik-ports-via-environment-variables

View File

@@ -68,9 +68,9 @@ export const initializeTraefik = async ({
Replicas: 1, Replicas: 1,
}, },
}, },
Labels: { // Labels: {
"traefik.enable": "true", // "traefik.enable": "true",
}, // },
EndpointSpec: { EndpointSpec: {
Ports: [ Ports: [
{ {
@@ -172,7 +172,7 @@ export const createDefaultServerTraefikConfig = () => {
writeFileSync( writeFileSync(
path.join(DYNAMIC_TRAEFIK_PATH, `${appName}.yml`), path.join(DYNAMIC_TRAEFIK_PATH, `${appName}.yml`),
yamlStr, yamlStr,
"utf8", "utf8"
); );
}; };